Staging
v0.5.1
https://github.com/python/cpython
Revision bac3d91cad7a08f05ab225b995d8da22c88c2e69 authored by Fred Drake on 25 January 2005, 07:53:30 UTC, committed by Fred Drake on 25 January 2005, 07:53:30 UTC
1 parent 03bdf17
Raw File
Tip revision: bac3d91cad7a08f05ab225b995d8da22c88c2e69 authored by Fred Drake on 25 January 2005, 07:53:30 UTC
bump version number to prepare for a release
Tip revision: bac3d91
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