Staging
v0.5.1
https://github.com/python/cpython
Revision 825dae88d042a098f7dc496241dde566bea20715 authored by Matthias Klose on 26 November 2008, 17:39:09 UTC, committed by Matthias Klose on 26 November 2008, 17:39:09 UTC
1 parent 5cb6763
Raw File
Tip revision: 825dae88d042a098f7dc496241dde566bea20715 authored by Matthias Klose on 26 November 2008, 17:39:09 UTC
- Merge rev 67396, Modules/Setup.dist: Mention _elementtree and _pickle.
Tip revision: 825dae8
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