Staging
v0.8.1
https://github.com/python/cpython
Revision 4c86fc01f63b94408626a2f0e67d991643980ccc authored by Benjamin Peterson on 29 April 2018, 22:47:18 UTC, committed by Benjamin Peterson on 29 April 2018, 22:47:18 UTC
1 parent 0b91f8a
Raw File
Tip revision: 4c86fc01f63b94408626a2f0e67d991643980ccc authored by Benjamin Peterson on 29 April 2018, 22:47:18 UTC
generate 2.7.15 NEWS
Tip revision: 4c86fc0
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