Staging
v0.8.1
Revision eebb252e6b67c4dcbc079cdf3f06c9e820fcc514 authored by Georg Brandl on 18 December 2010, 12:01:15 UTC, committed by Georg Brandl on 18 December 2010, 12:01:15 UTC
1 parent 5d53fdd
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