Staging
v0.5.1
https://github.com/python/cpython
Revision 337487e3b87f887abdb3b47781508c6437cd7e94 authored by Martin v. Löwis on 17 June 2006, 09:15:14 UTC, committed by Martin v. Löwis on 17 June 2006, 09:15:14 UTC
1 parent 5416605
Raw File
Tip revision: 337487e3b87f887abdb3b47781508c6437cd7e94 authored by Martin v. Löwis on 17 June 2006, 09:15:14 UTC
Patch #763580: Add name and value arguments to
Tip revision: 337487e
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, size_t buf_len,  const char *format, double d);


#ifdef __cplusplus
}
#endif

#endif /* !Py_STRTOD_H */
back to top