tzname.c
Go to the documentation of this file.
00001 #include <stdio.h>
00002 #include <time.h>
00003 
00004 extern char *tzname[2];
00005 int main(void)
00006 {
00007   printf("without tzset()\n");
00008   printf("tzname: [%s][%s]\n", tzname[0], tzname[1]);
00009 
00010   tzset();
00011   printf("with tzset()\n");
00012   printf("tzname: [%s][%s]\n", tzname[0], tzname[1]);
00013   
00014   return 0;
00015 }


euslisp
Author(s): Toshihiro Matsui
autogenerated on Thu Sep 3 2015 10:36:20