xref
: /
plan9-contrib
/
sys
/
src
/
ape
/
lib
/
ap
/
gen
/
atof.c
(revision 219b2ee8daee37f4aad58d63f21287faa8e4ffdc)
Home
History
Annotate
Line#
Scopes#
Navigate#
Raw
Download
current directory
1
#
include
<
stdlib.h
>
2
3
double
4
atof
(
const
char
*
s
)
5
{
6
return
(
strtod
(
s
, (
char
**)0));
7
}
8