dtoa.h 353 B

123456789101112131415
  1. #ifndef PY_NO_SHORT_FLOAT_REPR
  2. #ifdef __cplusplus
  3. extern "C" {
  4. #endif
  5. PyAPI_FUNC(double) _Py_dg_strtod(const char *str, char **ptr);
  6. PyAPI_FUNC(char *) _Py_dg_dtoa(double d, int mode, int ndigits,
  7. int *decpt, int *sign, char **rve);
  8. PyAPI_FUNC(void) _Py_dg_freedtoa(char *s);
  9. #ifdef __cplusplus
  10. }
  11. #endif
  12. #endif