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