ack/lang/cem/libcc.ansi/time/ctime.c

13 lines
162 B
C
Raw Normal View History

1989-06-12 15:22:14 +00:00
/*
* ctime - convers the calendar time to a string
*/
1994-06-24 14:02:31 +00:00
/* $Id$ */
1989-06-12 15:22:14 +00:00
#include <time.h>
char *
(ctime)(const time_t *timer)
1989-06-12 15:22:14 +00:00
{
return asctime(localtime(timer));
}