Counter Strike : Global Offensive Source Code
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
306 B

  1. #ifndef Py_PYGETOPT_H
  2. #define Py_PYGETOPT_H
  3. #ifdef __cplusplus
  4. extern "C" {
  5. #endif
  6. PyAPI_DATA(int) _PyOS_opterr;
  7. PyAPI_DATA(int) _PyOS_optind;
  8. PyAPI_DATA(char *) _PyOS_optarg;
  9. PyAPI_FUNC(int) _PyOS_GetOpt(int argc, char **argv, char *optstring);
  10. #ifdef __cplusplus
  11. }
  12. #endif
  13. #endif /* !Py_PYGETOPT_H */