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.

18 lines
253 B

  1. #ifndef Py_PGEN_H
  2. #define Py_PGEN_H
  3. #ifdef __cplusplus
  4. extern "C" {
  5. #endif
  6. /* Parser generator interface */
  7. extern grammar *meta_grammar(void);
  8. struct _node;
  9. extern grammar *pgen(struct _node *);
  10. #ifdef __cplusplus
  11. }
  12. #endif
  13. #endif /* !Py_PGEN_H */