Staging
v0.5.0
https://github.com/python/cpython
Raw File
Tip revision: 36a6558891a010675cd2867a242055db113b7012 authored by Benjamin Peterson on 23 February 2012, 15:45:48 UTC
version now 3.1.5rc1
Tip revision: 36a6558
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