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 *
|
2007-04-21 23:18:14 +00:00
|
|
|
(ctime)(const time_t *timer)
|
1989-06-12 15:22:14 +00:00
|
|
|
{
|
|
|
|
return asctime(localtime(timer));
|
|
|
|
}
|