Staging
v0.5.1
https://github.com/python/cpython
Revision baab23ec364e8a850db931a2bfef31c3b9c9a5ae authored by Armin Rigo on 04 October 2006, 10:23:57 UTC, committed by Armin Rigo on 04 October 2006, 10:23:57 UTC
1 parent b2d0f34
Raw File
Tip revision: baab23ec364e8a850db931a2bfef31c3b9c9a5ae authored by Armin Rigo on 04 October 2006, 10:23:57 UTC
Compilation problem caused by conflicting typedefs for uint32_t
Tip revision: baab23e
pygetopt.h

#ifndef Py_PYGETOPT_H
#define Py_PYGETOPT_H
#ifdef __cplusplus
extern "C" {
#endif

PyAPI_DATA(int) _PyOS_opterr;
PyAPI_DATA(int) _PyOS_optind;
PyAPI_DATA(char *) _PyOS_optarg;

PyAPI_FUNC(int) _PyOS_GetOpt(int argc, char **argv, char *optstring);

#ifdef __cplusplus
}
#endif
#endif /* !Py_PYGETOPT_H */
back to top