Staging
v0.8.1
https://github.com/python/cpython
Revision 6feb9003e52ebff37e439ae711af9b6f4f604df1 authored by Georg Brandl on 05 March 2011, 14:03:31 UTC, committed by Georg Brandl on 05 March 2011, 14:03:31 UTC
1 parent 41769a7
Raw File
Tip revision: 6feb9003e52ebff37e439ae711af9b6f4f604df1 authored by Georg Brandl on 05 March 2011, 14:03:31 UTC
Fix tag references in 2.6 branch.
Tip revision: 6feb900
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