Staging
v0.5.1
https://github.com/python/cpython
Revision 6e2e90d1602479769f4a3ba7dc27a57fbd2c899f authored by Fred Drake on 05 November 2004, 04:51:05 UTC, committed by Fred Drake on 05 November 2004, 04:51:05 UTC
1 parent 8aebe19
Raw File
Tip revision: 6e2e90d1602479769f4a3ba7dc27a57fbd2c899f authored by Fred Drake on 05 November 2004, 04:51:05 UTC
switch remaining icon references to the PNG icons
Tip revision: 6e2e90d
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