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

Diff for /mandoc/test-strptime.c between version 1.2 and 1.4

version 1.2, 2014/01/04 01:11:00 version 1.4, 2018/08/15 02:15:52
Line 1 
Line 1 
 #if defined(__linux__) || defined(__MINT__)  
 # define _GNU_SOURCE /* strptime() */  
 #endif  
   
 #include <time.h>  #include <time.h>
   
 int  int
Line 9  main(void)
Line 5  main(void)
 {  {
         struct tm tm;          struct tm tm;
         const char input[] = "2014-01-04";          const char input[] = "2014-01-04";
         return( ! (input+10 == strptime(input, "%Y-%m-%d", &tm) &&          return ! (strptime(input, "%Y-%m-%d", &tm) == input + 10 &&
             114 == tm.tm_year && 0 == tm.tm_mon && 4 == tm.tm_mday));              tm.tm_year == 114 && tm.tm_mon == 0 && tm.tm_mday == 4);
 }  }

Legend:
Removed from v.1.2  
changed lines
  Added in v.1.4

CVSweb