index
:
sbos.git
master
Unnamed repository; edit this file 'description' to name the repository.
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
userland
/
libc
/
stdlib
/
atof.c
blob: 8524f8b8400585df754d73c687cd5661dc1829a8 (
plain
)
1
2
3
4
5
#include <stdlib.h> double atof(const char *str) { return strtod(str,(char **)NULL); }