Staging
v0.8.1
Revision 21a808230aa33741f1dd9bf38f0e283c1b72210e authored by Miss Islington (bot) on 13 September 2018, 00:06:53 UTC, committed by GitHub on 13 September 2018, 00:06:53 UTC
(cherry picked from commit e1a34ceb541ef87e03bb428630097dacc9c658e5)

Co-authored-by: Benjamin Peterson <benjamin@python.org>
1 parent bdace2e
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