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