13 lines
164 B
C
13 lines
164 B
C
|
/*
|
||
|
* ctime - convers the calendar time to a string
|
||
|
*/
|
||
|
/* $Header$ */
|
||
|
|
||
|
#include <time.h>
|
||
|
|
||
|
char *
|
||
|
ctime(const time_t *timer)
|
||
|
{
|
||
|
return asctime(localtime(timer));
|
||
|
}
|