mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
Files
00a43bb11c45cfb2e07fa0e79d0eb7bb7ef04c19
16 lines
338 B
C
16 lines
338 B
C
#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
|