refactored lexer code
[cparser] / symbol.h
1 #ifndef SYMBOL_H
2 #define SYMBOL_H
3
4 #include "ast.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         declaration_t  *declaration;
13         const void     *context;
14 };
15
16 #endif