Staging
v0.5.1
https://github.com/python/cpython
Revision 19f7ca25e5dc746b0f52d610ba1b2a80ec329c50 authored by Ezio Melotti on 09 May 2011, 04:27:20 UTC, committed by Ezio Melotti on 09 May 2011, 04:27:20 UTC
2 parent s fd69abb + 8269a44
Raw File
Tip revision: 19f7ca25e5dc746b0f52d610ba1b2a80ec329c50 authored by Ezio Melotti on 09 May 2011, 04:27:20 UTC
#11910: merge with 3.1.
Tip revision: 19f7ca2
dtoa.h
#ifndef Py_LIMITED_API
#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
#endif
back to top