X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=symbol.h;h=3d58dfe4e2ec990b5e83eae6b9b67d6b2211f78c;hb=0e674539be8e3f8453a81f0ba6f463f3d098075e;hp=413319b80d0a6f9d41473abf222bf8c40d3e73bb;hpb=d5e8df5885f97ea65839f8970b8697549c207610;p=cparser diff --git a/symbol.h b/symbol.h index 413319b..3d58dfe 100644 --- a/symbol.h +++ b/symbol.h @@ -1,11 +1,15 @@ #ifndef SYMBOL_H #define SYMBOL_H +#include "ast.h" + typedef struct symbol_t symbol_t; struct symbol_t { - const char *string; - unsigned ID; + const char *string; + unsigned short ID; + unsigned short pp_ID; + declaration_t *declaration; }; #endif