ack/lang/cem/libcc.ansi/time/ctime.c
1994-06-24 14:02:31 +00:00

13 lines
160 B
C

/*
* ctime - convers the calendar time to a string
*/
/* $Id$ */
#include <time.h>
char *
ctime(const time_t *timer)
{
return asctime(localtime(timer));
}