Sign in
cobalt
/
cobalt
/
25399f97090f8a86f56525c38486080cb2747250
/
.
/
src
/
third_party
/
musl
/
src
/
time
/
ctime_r.c
blob: 3e24aa681beea2263d5350ba6c8f7473c09fe89e [
file
] [
log
] [
blame
]
#include
<time.h>
char
*
ctime_r
(
const
time_t
*
t
,
char
*
buf
)
{
struct
tm tm
,
*
tm_p
=
localtime_r
(
t
,
&
tm
);
return
tm_p
?
asctime_r
(
tm_p
,
buf
)
:
0
;
}