Sign in
mojo
/
mojo-tools
/
6d10d6bbfecec30019b2fe5c06e28a809f0d9753
/
.
/
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
);
}