Staging
v0.8.1
Revision 4cf52a21e7a773e79312ac77657c78a032786717 authored by Neal Norwitz on 25 January 2006, 07:58:22 UTC, committed by Neal Norwitz on 25 January 2006, 07:58:22 UTC
1 parent efd8e78
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