Staging
v0.5.0
https://github.com/python/cpython
Raw File
Tip revision: 73cdff47b2ff80e38da49bb42e68646ae1d4f190 authored by Anthony Baxter on 23 March 2006, 02:49:35 UTC
take 3
Tip revision: 73cdff4
metagrammar.h
#ifndef Py_METAGRAMMAR_H
#define Py_METAGRAMMAR_H
#ifdef __cplusplus
extern "C" {
#endif


#define MSTART 256
#define RULE 257
#define RHS 258
#define ALT 259
#define ITEM 260
#define ATOM 261

#ifdef __cplusplus
}
#endif
#endif /* !Py_METAGRAMMAR_H */
back to top