Staging
v0.8.1
https://github.com/python/cpython
Revision 4354ba3f762cbb2b1d6140d3f4297443af5ef1ff authored by Fred Drake on 03 August 2004, 15:54:45 UTC, committed by Fred Drake on 03 August 2004, 15:54:45 UTC
for the tests, and restored properly when done
1 parent 34fba3b
Raw File
Tip revision: 4354ba3f762cbb2b1d6140d3f4297443af5ef1ff authored by Fred Drake on 03 August 2004, 15:54:45 UTC
avoid fragility: make sure POSIXLY_CORRECT is completely controlled
Tip revision: 4354ba3
pystrtod.h
#ifndef Py_STRTOD_H
#define Py_STRTOD_H

#ifdef __cplusplus
extern "C" {
#endif


double PyOS_ascii_strtod(const char *str, char **ptr);
double PyOS_ascii_atof(const char *str);
char * PyOS_ascii_formatd(char *buffer, int buf_len,  const char *format, double d);


#ifdef __cplusplus
}
#endif

#endif /* !Py_STRTOD_H */
back to top