[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.1 and 1.2

version 1.1, 2011/07/24 18:15:14 version 1.2, 2014/01/04 01:11:00
Line 1 
Line 1 
 #if defined(__linux__) || defined(__MINT__)  #if defined(__linux__) || defined(__MINT__)
 # define _GNU_SOURCE /* strptime(), getsubopt() */  # define _GNU_SOURCE /* strptime() */
 #endif  #endif
   
 #include <time.h>  #include <time.h>
   
 int  int
 main(int argc, char **argv)  main(void)
 {  {
         struct tm tm;          struct tm tm;
         strptime(*argv, "%D", &tm);          const char input[] = "2014-01-04";
         return 0;          return( ! (input+10 == strptime(input, "%Y-%m-%d", &tm) &&
               114 == tm.tm_year && 0 == tm.tm_mon && 4 == tm.tm_mday));
 }  }

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

CVSweb