atof - convert a string to double-precision number
#include <stdlib.h> double atof(const char *str);
The call atof(str) is equivalent to:except that the handling of errors may differ. If the value cannot be represented, the behaviour is undefined.strtod(str,(char **)NULL),
The atof() function returns the converted value if the value can be represented.
No errors are defined.
None.
The atof() function is subsumed by strtod() but is retained because it is used extensively in existing code. If the number is not known to be in range, strtod() should be used because atof() is not required to perform any error checking.
None.
strtod(), <stdlib.h>.
Derived from Issue 1 of the SVID.