Weblog
2020
2019
2018
2017
2016
2015
2014
2013
2012
2011
2010
2009
2008
2007
2006
2005
RSS Feed
XML Atom
Tags
Projects
COBS
CryptoTE
digup
disk-filltest
eSAIS-LCP
Flex Bison C++ Example
malloc_count
On Bispanning Graphs
Parallel Memory Bandwidth
Parallel String Sorting
SqlPlotTools
The Sound of Sorting
STX B+ Tree
STX Constant BTreeDB
STX ExecPipe
STX Expression Parser
STXXL 1.4
Thrill - Big Data Framework
VNCrec RGB 0.4
Publications
Search
Subscribe
About
panthema
/
2006
/
SDIOS06
/
sdios06
/
lib
/
libc
/
atof.c
(
Download File
)
#include
<stdlib.h>
double
atof
(
const
char
*
nptr
)
{
double
tmp
=
strtod
(
nptr
,
0
);
return
tmp
;
}