home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 387b.lha / dice_v2.02 / lib / time / ctime.c < prev    next >
Encoding:
C/C++ Source or Header  |  1990-05-30  |  121 b   |  15 lines

  1.  
  2. /*
  3.  *  time/ctime.c
  4.  */
  5.  
  6. #include <time.h>
  7.  
  8. char *
  9. ctime(tp)
  10. const time_t *tp;
  11. {
  12.     return(asctime(localtime(tp)));
  13. }
  14.  
  15.