Staging
v0.5.1
https://github.com/python/cpython
Revision 2e9b6cb6ec6cfed4126eb17994522717fae435e1 authored by Amaury Forgeot d'Arc on 02 September 2008, 21:17:05 UTC, committed by Amaury Forgeot d'Arc on 02 September 2008, 21:17:05 UTC
1 parent 3e7dd78
Raw File
Tip revision: 2e9b6cb6ec6cfed4126eb17994522717fae435e1 authored by Amaury Forgeot d'Arc on 02 September 2008, 21:17:05 UTC
Use vs9to8.py to refresh the Visual Studio 2005 build files.
Tip revision: 2e9b6cb
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