Staging
v0.5.1
https://github.com/python/cpython
Revision 32cb7f080dea6b99db52dd15fbc8a1e1eba88748 authored by Georg Brandl on 14 September 2005, 06:56:51 UTC, committed by Georg Brandl on 14 September 2005, 06:56:51 UTC
1 parent ae4ae43
Raw File
Tip revision: 32cb7f080dea6b99db52dd15fbc8a1e1eba88748 authored by Georg Brandl on 14 September 2005, 06:56:51 UTC
Backport of patch #1290454: Fix reload() error message when parent is not
Tip revision: 32cb7f0
pystrtod.h
#ifndef Py_STRTOD_H
#define Py_STRTOD_H

#ifdef __cplusplus
extern "C" {
#endif


PyAPI_FUNC(double) PyOS_ascii_strtod(const char *str, char **ptr);
PyAPI_FUNC(double) PyOS_ascii_atof(const char *str);
PyAPI_FUNC(char *) PyOS_ascii_formatd(char *buffer, int buf_len,  const char *format, double d);


#ifdef __cplusplus
}
#endif

#endif /* !Py_STRTOD_H */
back to top