This commit is contained in:
Jim Meyering 1996-03-24 18:13:56 +00:00
parent 236c02759b
commit a9ff449aa6

View File

@ -14,6 +14,11 @@ double strtod ();
#include <ctype.h>
#include "xstrtod.h"
/* An interface to strtod that encapsulates all the error checking
one should usually perform. Like strtod, but return zero upon
successful conversion and put the result in *RESULT. Return
non-zero upon any failure. */
int
xstrtod (str, ptr, result)
const char *str;