| /* | |
| Copyright 2002-2003 John Plevyak, All Rights Reserved | |
| */ | |
| struct Production; | |
| struct Rule; | |
| struct Elem; | |
| typedef struct ParseNode_User { | |
| struct Production *p; | |
| struct Rule *r; | |
| struct Elem *e; | |
| unsigned int kind; | |
| } ParseNode_User; | |
| #define D_ParseNode_User ParseNode_User | |
| #define D_ParseNode_Globals struct Grammar | |