Staging
v0.5.1
https://github.com/python/cpython
Revision 8569264be99f5d1300d3fb25af3e3ebad1c147aa authored by Thomas Heller on 20 January 2005, 19:15:39 UTC, committed by Thomas Heller on 20 January 2005, 19:15:39 UTC
1 parent cdf41ba
Raw File
Tip revision: 8569264be99f5d1300d3fb25af3e3ebad1c147aa authored by Thomas Heller on 20 January 2005, 19:15:39 UTC
Fix [ 1103844 ] fix distutils.install.dump_dirs() with negated options.
Tip revision: 8569264
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