home *** CD-ROM | disk | FTP | other *** search
/ CD Shareware Magazine 1996 December / CD_shareware_12-96.iso / DOS / Programa / CCDL122.ZIP / CLIBS / TIME / CTIME.C < prev    next >
Encoding:
C/C++ Source or Header  |  1996-07-08  |  126 b   |  7 lines

  1. #include <time.h>
  2.  
  3. char *ctime(const time_t *timer)
  4. {
  5.     struct tm *t = localtime(timer), t1 = *t;
  6.     return asctime(&t1);
  7. }