Staging
v0.5.1
https://github.com/python/cpython
Revision 1f94cd0c7a244abf4e7d2c3216ff6f2058601f73 authored by Georg Brandl on 05 September 2010, 17:09:18 UTC, committed by Georg Brandl on 05 September 2010, 17:09:18 UTC
1 parent a9b51d2
Raw File
Tip revision: 1f94cd0c7a244abf4e7d2c3216ff6f2058601f73 authored by Georg Brandl on 05 September 2010, 17:09:18 UTC
#9776: fix some spacing.
Tip revision: 1f94cd0
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