ack/lang/cem/libcc.ansi/time/ctime.c
2018-06-21 22:33:47 +02:00

11 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));
}