index
:
openlinux.git
master
Openlinux source tree
Kacper Fiedorowicz
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
lib
/
libc
/
stdlib
/
atof.c
blob: 5f5fc91fa10bd85059a7d7c0c39d442a16326f01 (
plain
)
1
2
3
4
5
6
#include <stdlib.h> double atof(const char *str) { return strtod(str, (char **)NULL); }