Staging
v0.5.1
https://github.com/python/cpython
Revision 139a646fda94ddb97afedfaaecf3227295f74428 authored by Ronald Oussoren on 20 September 2009, 19:06:58 UTC, committed by Ronald Oussoren on 20 September 2009, 19:06:58 UTC
1 parent 1d2f713
Raw File
Tip revision: 139a646fda94ddb97afedfaaecf3227295f74428 authored by Ronald Oussoren on 20 September 2009, 19:06:58 UTC
Backport of r72946. This closes Issue 6100 and 6951 for
Tip revision: 139a646
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