Sign in
mojo
/
mojo
/
96b05c1cc252cbd1582be4b8c554e72024938f3c
/
.
/
fusl
/
src
/
time
/
ctime_r.c
blob: d2260a165a2e88112f0c74e5f2d13628af09e2ff [
file
] [
log
] [
blame
]
#include
<time.h>
char
*
ctime_r
(
const
time_t
*
t
,
char
*
buf
)
{
struct
tm tm
;
localtime_r
(
t
,
&
tm
);
return
asctime_r
(&
tm
,
buf
);
}