xref
: /
plan9
/
sys
/
src
/
ape
/
lib
/
ap
/
gen
/
atof.c
(revision ff8c3af2f44d95267f67219afa20ba82ff6cf7e4)
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