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 >
Wrap
Text File
|
1993-01-06
|
165b
|
9 lines
/* ctime function */
#include <time.h>
char *(ctime)(const time_t *tod)
{ /* convert calendar time to local text */
return (asctime(localtime(tod)));
}