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