blob: d8799e94455c29809a11ec762e30ef211cc99308 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#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 ! (strptime(input, "%Y-%m-%d", &tm) == input + 10 &&
tm.tm_year == 114 && tm.tm_mon == 0 && tm.tm_mday == 4);
}
|