Staging
v0.5.1
https://github.com/python/cpython
Revision 82078bcfc3ec9c3af11a8232262c043e819feb25 authored by Eli Bendersky on 06 March 2013, 14:53:39 UTC, committed by Eli Bendersky on 06 March 2013, 14:53:39 UTC
1 parent f5a9bc5
Raw File
Tip revision: 82078bcfc3ec9c3af11a8232262c043e819feb25 authored by Eli Bendersky on 06 March 2013, 14:53:39 UTC
Fix doc grammar and line width
Tip revision: 82078bc
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(void) _PyOS_ResetGetOpt(void);
PyAPI_FUNC(int) _PyOS_GetOpt(int argc, char **argv, char *optstring);

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