]> git.proxmox.com Git - mirror_edk2.git/blobdiff - AppPkg/Applications/Python/Python-2.7.2/Include/pystrtod.h
edk2: Remove AppPkg, StdLib, StdLibPrivateInternalFiles
[mirror_edk2.git] / AppPkg / Applications / Python / Python-2.7.2 / Include / pystrtod.h
diff --git a/AppPkg/Applications/Python/Python-2.7.2/Include/pystrtod.h b/AppPkg/Applications/Python/Python-2.7.2/Include/pystrtod.h
deleted file mode 100644 (file)
index f2ecc60..0000000
+++ /dev/null
@@ -1,45 +0,0 @@
-#ifndef Py_STRTOD_H\r
-#define Py_STRTOD_H\r
-\r
-#ifdef __cplusplus\r
-extern "C" {\r
-#endif\r
-\r
-\r
-PyAPI_FUNC(double) PyOS_ascii_strtod(const char *str, char **ptr);\r
-PyAPI_FUNC(double) PyOS_ascii_atof(const char *str);\r
-\r
-/* Deprecated in 2.7 and 3.1. Will disappear in 2.8 (if it exists) and 3.2 */\r
-PyAPI_FUNC(char *) PyOS_ascii_formatd(char *buffer, size_t buf_len,\r
-                                      const char *format, double d);\r
-PyAPI_FUNC(double) PyOS_string_to_double(const char *str,\r
-                                         char **endptr,\r
-                                         PyObject *overflow_exception);\r
-\r
-/* The caller is responsible for calling PyMem_Free to free the buffer\r
-   that's is returned. */\r
-PyAPI_FUNC(char *) PyOS_double_to_string(double val,\r
-                                         char format_code,\r
-                                         int precision,\r
-                                         int flags,\r
-                                         int *type);\r
-\r
-PyAPI_FUNC(double) _Py_parse_inf_or_nan(const char *p, char **endptr);\r
-\r
-\r
-/* PyOS_double_to_string's "flags" parameter can be set to 0 or more of: */\r
-#define Py_DTSF_SIGN      0x01 /* always add the sign */\r
-#define Py_DTSF_ADD_DOT_0 0x02 /* if the result is an integer add ".0" */\r
-#define Py_DTSF_ALT       0x04 /* "alternate" formatting. it's format_code\r
-                                  specific */\r
-\r
-/* PyOS_double_to_string's "type", if non-NULL, will be set to one of: */\r
-#define Py_DTST_FINITE 0\r
-#define Py_DTST_INFINITE 1\r
-#define Py_DTST_NAN 2\r
-\r
-#ifdef __cplusplus\r
-}\r
-#endif\r
-\r
-#endif /* !Py_STRTOD_H */\r