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