Sign in
mojo
/
mojo-tools
/
7d579155cc597aa3befcbfad66eef54bda06b57c
/
.
/
fusl
/
src
/
time
/
asctime.c
blob: eea793d59536dfad6111e6e3bfcca86df1d69789 [
file
] [
log
] [
blame
]
#include
<time.h>
char
*
__asctime
(
const
struct
tm
*,
char
*);
char
*
asctime
(
const
struct
tm
*
tm
)
{
static
char
buf
[
26
];
return
__asctime
(
tm
,
buf
);
}