summaryrefslogtreecommitdiffstats
path: root/Include/pystrtod.h
diff options
context:
space:
mode:
Diffstat (limited to 'Include/pystrtod.h')
-rw-r--r--Include/pystrtod.h18
1 files changed, 18 insertions, 0 deletions
diff --git a/Include/pystrtod.h b/Include/pystrtod.h
new file mode 100644
index 0000000..e4e5e52
--- /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 */