Staging
v0.8.1
https://github.com/python/cpython
Revision 4effb670049930e905ef8473592fc675b6fdedc1 authored by Gregory P. Smith on 19 March 2013, 22:25:46 UTC, committed by Gregory P. Smith on 19 March 2013, 22:25:46 UTC
2 parent s f697180 + 432a48a
Raw File
Tip revision: 4effb670049930e905ef8473592fc675b6fdedc1 authored by Gregory P. Smith on 19 March 2013, 22:25:46 UTC
merge heads
Tip revision: 4effb67
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