more fixes, lexer should now be correct
[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             ID;
9 };
10
11 #endif