Sign in
mojo
/
mojo-tools
/
17e3b04429ce6ad836128e1ceffefd85493ec779
/
.
/
fusl
/
src
/
time
/
ctime_r.c
blob: e1d32bdeccbc80f9ff1a5ad916cc2d92853ff3a1 [
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
);
}