Guido van Rossum | 753e2bf | 1991-04-16 08:45:40 +0000 | [diff] [blame] | 1 | /* This is not a proper strtod() implementation, but sufficient for Python. |
2 | Python won't detect floating point constant overflow, though. */ | ||||
3 | |||||
4 | #include <string.h> | ||||
5 | |||||
6 | extern double atof(); | ||||
7 | |||||
8 | /*ARGSUSED*/ | ||||
9 | double | ||||
10 | strtod(p, pp) | ||||
11 | char *p; | ||||
12 | char **pp; | ||||
13 | { | ||||
14 | if (pp) | ||||
15 | *pp = strchr(p, '\0'); | ||||
16 | return atof(p); | ||||
17 | } |