/* * ctime.c * Original Author: G. Haley */ /* FUNCTION <>---convert time to local and format as string INDEX ctime ANSI_SYNOPSIS #include char *ctime(const time_t *<[clock]>); char *ctime_r(const time_t *<[clock]>, char *<[buf]>); TRAD_SYNOPSIS #include char *ctime(<[clock]>) time_t *<[clock]>; char *ctime_r(<[clock]>, <[buf]>) time_t *<[clock]>; char *<[buf]>; DESCRIPTION Convert the time value at <[clock]> to local time (like <>) and format it into a string of the form . Wed Jun 15 11:38:07 1988\n\0 (like <>). RETURNS A pointer to the string containing a formatted timestamp. PORTABILITY ANSI C requires <>. <> requires no supporting OS subroutines. */ #include #ifndef _REENT_ONLY char * _DEFUN (ctime, (tim_p), _CONST time_t * tim_p) { return asctime (localtime (tim_p)); } #endif