home *** CD-ROM | disk | FTP | other *** search
/ CD Shareware Magazine 1996 December / CD_shareware_12-96.iso / DOS / Programa / CCDL122.ZIP / CLIBS / TIME / ASCTIME.C next >
Encoding:
C/C++ Source or Header  |  1996-07-06  |  165 b   |  10 lines

  1. #include <time.h>
  2. #include <stdio.h>
  3.  
  4. char *asctime(struct tm *time)
  5. {
  6.     char buf[STACKPAD];
  7.     char rv[26];
  8.     strftime(rv,26,"%a %b %c\n",time);
  9.     return &rv;
  10. }