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