tzname.c
Go to the documentation of this file.
1 #include <stdio.h>
2 #include <time.h>
3 
4 extern char *tzname[2];
5 int main(void)
6 {
7  printf("without tzset()\n");
8  printf("tzname: [%s][%s]\n", tzname[0], tzname[1]);
9 
10  tzset();
11  printf("with tzset()\n");
12  printf("tzname: [%s][%s]\n", tzname[0], tzname[1]);
13 
14  return 0;
15 }
char * tzname[2]
int main(void)
Definition: tzname.c:5


euslisp
Author(s): Toshihiro Matsui
autogenerated on Fri Feb 21 2020 03:20:54