Skip to content

Instantly share code, notes, and snippets.

@mina86
mina86 / rfc1123.c
Created January 16, 2010 00:07
A simple parser converting RFC1123 date into an argument date util accepts.
/*
* RFC1123 date parser.
* Copyright (c) 2010 by Michal Nazarewicz (mina86/AT/mina86.com)
* Distributed under the terms of Academic Free License 3.0
*/
#include <ctype.h>
#include <errno.h>
#include <stdio.h>
#include <stdlib.h>