Staging
v0.5.1
https://github.com/python/cpython
Revision ed722d9e39199af08dbd7bb6cf62c9720ae5094a authored by Martin Panter on 07 June 2016, 01:07:32 UTC, committed by Martin Panter on 07 June 2016, 01:07:32 UTC
1 parent ab14558
Raw File
Tip revision: ed722d9e39199af08dbd7bb6cf62c9720ae5094a authored by Martin Panter on 07 June 2016, 01:07:32 UTC
Issue #27229: Comment in middle of shell command fails on BSD and OS X
Tip revision: ed722d9
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