home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / listings / v_11_03 / 1103018a < prev    next >
Text File  |  1993-01-06  |  165b  |  9 lines

  1. /* ctime function */
  2. #include <time.h>
  3.  
  4. char *(ctime)(const time_t *tod)
  5.     {    /* convert calendar time to local text */
  6.     return (asctime(localtime(tod)));
  7.     }
  8.  
  9.