fxlibc/src/time/ctime.c

7 lines
89 B
C

#include <time.h>
char *ctime(const time_t *time)
{
return asctime(localtime(time));
}