1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-15 10:17:20 +00:00
freebsd/contrib/mdocml/test-strptime.c
2014-11-22 20:18:38 +00:00

15 lines
302 B
C

#if defined(__linux__) || defined(__MINT__)
# define _GNU_SOURCE /* strptime() */
#endif
#include <time.h>
int
main(void)
{
struct tm tm;
const char input[] = "2014-01-04";
return( ! (input+10 == strptime(input, "%Y-%m-%d", &tm) &&
114 == tm.tm_year && 0 == tm.tm_mon && 4 == tm.tm_mday));
}