home *** CD-ROM | disk | FTP | other *** search
- /*------------------------------------------------------------------*/
- /* ╡{ªí└╔ªW║┘: wat73.c */
- /*------------------------------------------------------------------*/
- #include <stdio.h>
- #include <stdlib.h>
- #include <time.h>
- #include <sys\timeb.h>
-
- char *tzstring="TZ=PST8PDT";
-
- void main()
- {
- struct timeb cur_time;
- char *t;
-
- putenv(tzstring);
- tzset();
- ftime(&cur_time);
- t=ctime(&cur_time.time);
-
- printf("Ñ╪½eñº«╔╢í¼░ : %.19s.%hu %s",t,cur_time.millitm,&t[20]);
- printf("ª█«µ¬L½┬¬v╝╨╖╟«╔╢í 1970 ª~ 1 ñδ 1 ñΘ 00:00:00 ª▄ñ╡ª@╕g╣Lñº«╔╢í¼φ╝╞:");
- printf("%ld\n",cur_time.time);
- printf("ñdñ└ñºñ@¼φ(▓@¼φ) : %d\n",cur_time.millitm);
- printf("«µ¬L½┬¬v╝╨╖╟«╔╢í╗PªañΦ«╔╢í¼█«tñºñ└─┴╝╞ : %d\n",cur_time.timezone);
- printf("¼O(1)º_(0)╣Ω¼IñΘÑ·╕`¼∙«╔╢í : %d\n",cur_time.dstflag);
- }