Staging
v0.5.1
https://github.com/python/cpython
Revision b1c95c5d3f394657436d29b130eea3e8de13c822 authored by Fred Drake on 14 October 2002, 14:33:39 UTC, committed by Fred Drake on 14 October 2002, 14:33:39 UTC
1 parent 241aa8b
Raw File
Tip revision: b1c95c5d3f394657436d29b130eea3e8de13c822 authored by Fred Drake on 14 October 2002, 14:33:39 UTC
Update release information for 2.2.2 final.
Tip revision: b1c95c5
pygetopt.h

#ifndef Py_PYGETOPT_H
#define Py_PYGETOPT_H
#ifdef __cplusplus
extern "C" {
#endif

extern DL_IMPORT(int) _PyOS_opterr;
extern DL_IMPORT(int) _PyOS_optind;
extern DL_IMPORT(char *) _PyOS_optarg;

DL_IMPORT(int) _PyOS_GetOpt(int argc, char **argv, char *optstring);

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