metagrammar.h 253 Bytes
Newer Older
1 2 3 4 5 6
#ifndef Py_METAGRAMMAR_H
#define Py_METAGRAMMAR_H
#ifdef __cplusplus
extern "C" {
#endif

7

Guido van Rossum's avatar
Guido van Rossum committed
8 9 10 11 12 13
#define MSTART 256
#define RULE 257
#define RHS 258
#define ALT 259
#define ITEM 260
#define ATOM 261
14 15 16 17 18

#ifdef __cplusplus
}
#endif
#endif /* !Py_METAGRAMMAR_H */