3 * Original Author: G. Haley
8 <<ctime>>---convert time to local and format as string
17 char *ctime(const time_t *<[clock]>);
18 char *ctime_r(const time_t *<[clock]>, char *<[buf]>);
21 Convert the time value at <[clock]> to local time (like <<localtime>>)
22 and format it into a string of the form
23 . Wed Jun 15 11:38:07 1988\n\0
27 A pointer to the string containing a formatted timestamp.
30 ANSI C requires <<ctime>>.
32 <<ctime>> requires no supporting OS subroutines.
40 ctime (const time_t * tim_p
)
42 return asctime (localtime (tim_p
));