Staging
v0.5.1
https://github.com/python/cpython
Revision e4c96ad7d347720e5e88215e9a3e2d974c420e16 authored by Raymond Hettinger on 06 February 2008, 01:23:58 UTC, committed by Raymond Hettinger on 06 February 2008, 01:23:58 UTC
1 parent 0fc8351
Raw File
Tip revision: e4c96ad7d347720e5e88215e9a3e2d974c420e16 authored by Raymond Hettinger on 06 February 2008, 01:23:58 UTC
Update docs for collections ABCs and for collections.UserDict.
Tip revision: e4c96ad
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