17 lines
301 B
C
17 lines
301 B
C
#ifndef PARSER_H
|
|
#define PARSER_H
|
|
|
|
#include <stdbool.h>
|
|
#include <stdint.h>
|
|
#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 |