Weblog
2013
2012
2011
2010
2009
2008
2007
2006
2005
RSS Feed
XML Atom
Tags
algebra
c++
code-example
code-snippet
coding tricks
compsci
compsci study thesis
crypto-speedtest
cryptography
cryptote
flex-bison-cpp-example
fun
graphviz
hartmetall
helppc
hifi selbstbau
latex
librivox
linux
maths
music
netfundamentals
ns-3
parallel-string-sorting
qtsqlview
research
sdios06
sdlfractal
stringology
stx-btree
stx-exparser
talk
tutorium
university
utilities
webdesign
Index
CryptoTE
digup
disk-filltest
eSAIS-LCP
Flex Bison C++ Example
malloc_count
parallel-string-sorting
STX B+ Tree
STX Constant BTreeDB
STX ExecPipe
STX Expression Parser
Search
About Me
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
;
}