more work on parser
[cparser] / symbol.h
1 #ifndef SYMBOL_H
2 #define SYMBOL_H
3
4 #include "parser.h"
5
6 typedef struct symbol_t symbol_t;
7
8 struct symbol_t {
9         const char          *string;
10         unsigned short       ID;
11         unsigned short       pp_ID;
12         environment_entry_t *thing;
13 };
14
15 #endif