Staging
v0.5.1
https://github.com/python/cpython
Raw File
Tip revision: cd3b74d4e860b75bc45658ade0d412274054648f authored by Hirokazu Yamamoto on 20 August 2008, 16:15:28 UTC
Reverted r65900. See http://mail.python.org/pipermail/python-checkins/2008-August/073116.html
Tip revision: cd3b74d
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