blob: 8a325ed07488f8aecce0eb2897c115c6fa5d9b19 [file] [log] [blame]
Guido van Rossuma3309961993-07-28 09:05:47 +00001#ifndef Py_PGEN_H
2#define Py_PGEN_H
3#ifdef __cplusplus
4extern "C" {
5#endif
6
Guido van Rossumf70e43a1991-02-19 12:39:46 +00007
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00008/* Parser generator interface */
9
Tim Petersdbd9ba62000-07-09 03:09:57 +000010extern grammar *meta_grammar(void);
Guido van Rossum324aa791991-04-04 15:44:12 +000011
12struct _node;
Tim Petersdbd9ba62000-07-09 03:09:57 +000013extern grammar *pgen(struct _node *);
Guido van Rossuma3309961993-07-28 09:05:47 +000014
15#ifdef __cplusplus
16}
17#endif
18#endif /* !Py_PGEN_H */