Sign in
mojo
/
mojo-tools
/
e60e570696af32536f1a8e4bc7f8ce8935d6552d
/
.
/
fusl
/
src
/
stdlib
/
atof.c
blob: f7fcd8266eb4287bcd1d4bb2139def4e52f65301 [
file
]
#include
<stdlib.h>
double
atof
(
const
char
*
s
)
{
return
strtod
(
s
,
0
);
}