Staging
v0.5.1
https://github.com/python/cpython
Revision 9edceb3e591063f382ae82e14313813ffc1af0bf authored by Antoine Pitrou on 20 February 2012, 22:51:50 UTC, committed by Antoine Pitrou on 20 February 2012, 22:51:50 UTC
2 parent s e9f637b + 2697cd1
Raw File
Tip revision: 9edceb3e591063f382ae82e14313813ffc1af0bf authored by Antoine Pitrou on 20 February 2012, 22:51:50 UTC
Merge
Tip revision: 9edceb3
pygetopt.h

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

#ifndef Py_LIMITED_API
PyAPI_DATA(int) _PyOS_opterr;
PyAPI_DATA(int) _PyOS_optind;
PyAPI_DATA(wchar_t *) _PyOS_optarg;
#endif

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

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