source: python/vendor/Python-2.7.6/Include/dtoa.h

Last change on this file was 388, checked in by dmik, 11 years ago

python: Update vendor to 2.7.6.

  • Property svn:eol-style set to native
File size: 338 bytes
Line 
1#ifndef PY_NO_SHORT_FLOAT_REPR
2#ifdef __cplusplus
3extern "C" {
4#endif
5
6PyAPI_FUNC(double) _Py_dg_strtod(const char *str, char **ptr);
7PyAPI_FUNC(char *) _Py_dg_dtoa(double d, int mode, int ndigits,
8 int *decpt, int *sign, char **rve);
9PyAPI_FUNC(void) _Py_dg_freedtoa(char *s);
10
11
12#ifdef __cplusplus
13}
14#endif
15#endif
Note: See TracBrowser for help on using the repository browser.