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

  1.  
  2. /*
  3.  *  ASCTIME.C
  4.  */
  5.  
  6. #include <time.h>
  7.  
  8. char *
  9. asctime(tm)
  10. const struct tm *tm;
  11. {
  12.     static char TBuf[32];
  13.  
  14.     strftime(TBuf, sizeof(TBuf), "%c\n", tm);
  15.     return(TBuf);
  16. }
  17.  
  18.