Staging
v0.8.1
https://github.com/python/cpython
Revision 698fcf469bde83c9528e1ef90271dfa8628abd02 authored by Thomas Heller on 03 February 2005, 20:09:24 UTC, committed by Thomas Heller on 03 February 2005, 20:09:24 UTC
1 parent cc0cd71
Raw File
Tip revision: 698fcf469bde83c9528e1ef90271dfa8628abd02 authored by Thomas Heller on 03 February 2005, 20:09:24 UTC
Set PYTHONHOME before loading Python, so that sys.path will be set correctly.
Tip revision: 698fcf4
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