cpython/Python/strtod.c

18 lines
300 B
C
Raw Normal View History

1991-04-16 05:45:40 -03:00
/* This is not a proper strtod() implementation, but sufficient for Python.
Python won't detect floating point constant overflow, though. */
#include <string.h>
extern double atof();
/*ARGSUSED*/
double
strtod(p, pp)
char *p;
char **pp;
{
if (pp)
*pp = strchr(p, '\0');
return atof(p);
}