#ifndef PARSER_H #define PARSER_H #include "list.h" typedef struct { char* name; int address; } Symbol; void ParseTokens(List*); #endif