diff options
Diffstat (limited to 'Include/pystrtod.h')
-rw-r--r-- | Include/pystrtod.h | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/Include/pystrtod.h b/Include/pystrtod.h new file mode 100644 index 00000000000..e4e5e5278b4 --- /dev/null +++ b/Include/pystrtod.h @@ -0,0 +1,18 @@ +#ifndef Py_STRTOD_H +#define Py_STRTOD_H + +#ifdef __cplusplus +extern "C" { +#endif + + +double PyOS_ascii_strtod(const char *str, char **ptr); +double PyOS_ascii_atof(const char *str); +char * PyOS_ascii_formatd(char *buffer, int buf_len, const char *format, double d); + + +#ifdef __cplusplus +} +#endif + +#endif /* !Py_STRTOD_H */ |