Staging
v0.5.1
https://github.com/python/cpython
Revision 113a0855908f917c3cc523785fb1b334b6995f6a authored by Martin v. Löwis on 29 May 2009, 17:25:39 UTC, committed by Martin v. Löwis on 29 May 2009, 17:25:39 UTC
1 parent 8ed91b2
Raw File
Tip revision: 113a0855908f917c3cc523785fb1b334b6995f6a authored by Martin v. Löwis on 29 May 2009, 17:25:39 UTC
Issue 5562: check for wcsftime.
Tip revision: 113a085
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