[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.3

version 1.2, 2014/01/04 01:11:00 version 1.3, 2015/10/06 18:32:20
Line 9  main(void)
Line 9  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.3

CVSweb