#ifndef PARSER_H #define PARSER_H #include #include #include "dictionary.h" #include "opcodes.h" #include "token.h" #include "array.h" #include "keywords.h" typedef struct _instruction Instruction; typedef Array Instructions; Instructions* ParseTokens(Array* tokens); #endif