Sign in
cobalt
/
cobalt
/
fc84fc2a551a0cf60d391fb3e7d8229e6f9a9daf
/
.
/
third_party
/
musl
/
src
/
time
/
ctime.c
blob: 36029315128f250a86264447ee20a95bd7f366b7 [
file
]
#include
<time.h>
char
*
ctime
(
const
time_t
*
t
)
{
struct
tm
*
tm
=
localtime
(
t
);
if
(!
tm
)
return
0
;
return
asctime
(
tm
);
}