home *** CD-ROM | disk | FTP | other *** search
- /*------------------------------------------------------------------*/
- /* ╡{ªí└╔ªW║┘: wat79.c */
- /*------------------------------------------------------------------*/
- #include <stdio.h>
- #include <stdlib.h>
- #include <time.h>
- #include <dos.h>
-
- char *tzstring = "TZ=PST8PDT";
-
- void main()
- {
- time_t cur_time;
- struct tm *gmt, *area;
-
- putenv(tzstring);
- tzset();
-
- cur_time = time(NULL);
- area = localtime(&cur_time);
- printf("░╧░∞«╔╢í¼░: %s", asctime(area));
- gmt = gmtime(&cur_time);
- printf("«µ¬L½┬¬v╝╨╖╟«╔╢í¼░ : %s", asctime(gmt));
- }