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