Sign in
mojo
/
mojo-tools
/
84cb1e4135d4052700bbfe002e986cd64a3f5eb2
/
.
/
fusl
/
src
/
time
/
ctime.c
blob: 185ec5543b958e04ff7560ae333ed7cac61a9c2c [
file
]
#include
<time.h>
char
*
ctime
(
const
time_t
*
t
)
{
return
asctime
(
localtime
(
t
));
}