blob: 9b434b77b6ed653bd90ffd5f6ce3613d7da4c91e [file] [log] [blame]
Mark Dickinsonb08a53a2009-04-16 19:52:09 +00001#ifndef PY_NO_SHORT_FLOAT_REPR
2#ifdef __cplusplus
3extern "C" {
4#endif
5
6PyAPI_FUNC(double) _Py_dg_strtod(const char *str, char **ptr);
7PyAPI_FUNC(char *) _Py_dg_dtoa(double d, int mode, int ndigits,
8 int *decpt, int *sign, char **rve);
9PyAPI_FUNC(void) _Py_dg_freedtoa(char *s);
10
11
12#ifdef __cplusplus
13}
14#endif
15#endif