Go to the first, previous, next, last section, table of contents.

ctime---convert time to local and format as string

Synopsis
#include <time.h>
char *ctime(time_t timp);

Description
Convert the time value at timp to local time (like localtime) and format it into a string of the form
 Wed Jun 15 11:38:07 1988\n\0
(like asctime).


Returns
A pointer to the string containing a formatted timestamp.


Portability
ANSI C requires ctime.

ctime requires no supporting OS subroutines.



Go to the first, previous, next, last section, table of contents.