2004-06-08 15:52:54 -03:00
|
|
|
#ifndef Py_STRTOD_H
|
|
|
|
#define Py_STRTOD_H
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2004-08-09 12:02:30 -03:00
|
|
|
PyAPI_FUNC(double) PyOS_ascii_strtod(const char *str, char **ptr);
|
|
|
|
PyAPI_FUNC(double) PyOS_ascii_atof(const char *str);
|
2006-02-15 13:27:45 -04:00
|
|
|
PyAPI_FUNC(char *) PyOS_ascii_formatd(char *buffer, size_t buf_len, const char *format, double d);
|
2004-06-08 15:52:54 -03:00
|
|
|
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif /* !Py_STRTOD_H */
|