[BACK]Return to test-strptime.c CVS log [TXT][DIR] Up to [cvsweb.bsd.lv] / mandoc

File: [cvsweb.bsd.lv] / mandoc / test-strptime.c (download)

Revision 1.3, Tue Oct 6 18:32:20 2015 UTC (8 years, 5 months ago) by schwarze
Branch: MAIN
CVS Tags: VERSION_1_14_4, VERSION_1_14_3, VERSION_1_14_2, VERSION_1_14_1, VERSION_1_13_4, VERSION_1_13
Changes since 1.2: +2 -2 lines

modernize style: "return" is not a function

#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);
}