comparison test/include/python2.7/dtoa.h @ 3:7d1a9a91b989 draft

planemo upload for repository https://github.com/Yating-L/jbrowse-archive-creator.git commit d583ac16a6c6942730ea536eb59cc37941816030-dirty
author yating-l
date Thu, 18 May 2017 18:37:28 -0400
parents
children
comparison
equal deleted inserted replaced
2:3e2160197902 3:7d1a9a91b989
1 #ifndef PY_NO_SHORT_FLOAT_REPR
2 #ifdef __cplusplus
3 extern "C" {
4 #endif
5
6 PyAPI_FUNC(double) _Py_dg_strtod(const char *str, char **ptr);
7 PyAPI_FUNC(char *) _Py_dg_dtoa(double d, int mode, int ndigits,
8 int *decpt, int *sign, char **rve);
9 PyAPI_FUNC(void) _Py_dg_freedtoa(char *s);
10
11
12 #ifdef __cplusplus
13 }
14 #endif
15 #endif