Staging
v0.5.1
https://github.com/python/cpython
Revision a1c2ce0431dce70a8990708baf28e2cf1f4d3293 authored by Georg Brandl on 26 July 2010, 17:09:32 UTC, committed by Georg Brandl on 26 July 2010, 17:09:32 UTC
1 parent 571a953
Raw File
Tip revision: a1c2ce0431dce70a8990708baf28e2cf1f4d3293 authored by Georg Brandl on 26 July 2010, 17:09:32 UTC
Add Reid.
Tip revision: a1c2ce0
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