no enviornment passing around anymore in lexer, more work on lexer, import expression...
[cparser] / symbol.h
1 #ifndef SYMBOL_H
2 #define SYMBOL_H
3
4 typedef struct symbol_t symbol_t;
5
6 struct symbol_t {
7         const char          *string;
8         unsigned short       ID;
9         unsigned short       pp_ID;
10 };
11
12 #endif