Staging
v0.5.1
https://github.com/python/cpython
Revision 1681b622515e2c174d59e79746579e71339adc04 authored by Fred Drake on 13 November 2004, 17:45:39 UTC, committed by Fred Drake on 13 November 2004, 17:45:39 UTC
so that this is harder to forget to do for development of new styles
1 parent bbc0d44
Raw File
Tip revision: 1681b622515e2c174d59e79746579e71339adc04 authored by Fred Drake on 13 November 2004, 17:45:39 UTC
add another way to specify an alternate name for the documentation set,
Tip revision: 1681b62
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