Staging
v0.5.1
https://github.com/python/cpython
Revision 09f1679a401a94b0626ab1e100aaaea271dbf3c0 authored by Senthil Kumaran on 10 May 2016, 08:29:34 UTC, committed by Senthil Kumaran on 10 May 2016, 08:29:34 UTC
1 parent b5a67de
Raw File
Tip revision: 09f1679a401a94b0626ab1e100aaaea271dbf3c0 authored by Senthil Kumaran on 10 May 2016, 08:29:34 UTC
Add NEWS entry for issue26960.
Tip revision: 09f1679
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