home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-387-Vol-3of3.iso / m / mar93.zip / 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.