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