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