#ifndef PARSER_H #define PARSER_H #include #include #include #include #include #include "list.h" #include "token.h" #include "opcodes.h" #include "symbols_table.h" SymbolTable* ParseTokens(List* tokens); #endif