Revision d14ae161dee43472d1cd3db82dbb0c6368577d62 authored by Steve Dower on 28 October 2016, 18:19:42 UTC, committed by Steve Dower on 28 October 2016, 18:19:42 UTC
2 parent s 1aea8fb + 43ab355
Raw File
pgen.h
#ifndef Py_PGEN_H
#define Py_PGEN_H
#ifdef __cplusplus
extern "C" {
#endif


/* Parser generator interface */

extern grammar *meta_grammar(void);

struct _node;
extern grammar *pgen(struct _node *);

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