home *** CD-ROM | disk | FTP | other *** search
- #include <time.h>
- #include <stdio.h>
-
- int
- main ()
- {
- struct tm *t_;
- time_t t;
-
- time (&t);
-
- for (;;)
- {
- printf ("t1 = %x\t", t);
- t_ = localtime (&t);
- fputs (asctime (t_), stdout);
- t = mktime (t_);
- printf ("t2 = %x\t", t);
- t_ = localtime (&t);
- fputs (asctime (t_), stdout);
- t -= 86400;
- }
- return 0;
- }
-