pgen.h 271 B

123456789101112131415161718
  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 */