Staging
v0.5.1
https://github.com/python/cpython
Revision ee933eccc98a62d1b9a4087a7fdea9a97e46fa10 authored by Benjamin Peterson on 15 March 2012, 17:25:54 UTC, committed by Benjamin Peterson on 15 March 2012, 17:25:54 UTC
1 parent 66d2bd7
Raw File
Tip revision: ee933eccc98a62d1b9a4087a7fdea9a97e46fa10 authored by Benjamin Peterson on 15 March 2012, 17:25:54 UTC
bump to 2.7.3rc2
Tip revision: ee933ec
dtoa.h
#ifndef PY_NO_SHORT_FLOAT_REPR
#ifdef __cplusplus
extern "C" {
#endif

PyAPI_FUNC(double) _Py_dg_strtod(const char *str, char **ptr);
PyAPI_FUNC(char *) _Py_dg_dtoa(double d, int mode, int ndigits,
                        int *decpt, int *sign, char **rve);
PyAPI_FUNC(void) _Py_dg_freedtoa(char *s);


#ifdef __cplusplus
}
#endif
#endif
back to top