Staging
v0.8.1
https://github.com/python/cpython
Revision ccffc9efb32950ae52cdb9dfd53fcf1f936be63b authored by Georg Brandl on 05 March 2011, 13:55:41 UTC, committed by Georg Brandl on 05 March 2011, 13:55:41 UTC
1 parent 5a92c10
Raw File
Tip revision: ccffc9efb32950ae52cdb9dfd53fcf1f936be63b authored by Georg Brandl on 05 March 2011, 13:55:41 UTC
Fix tag references in 2.3 branch.
Tip revision: ccffc9e
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