This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* 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> |
NewerOlder