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 }
main
int main(void)
Definition: tzname.c:5
time.h
tzname
char * tzname[2]


euslisp
Author(s): Toshihiro Matsui
autogenerated on Thu Jun 15 2023 02:06:43