16 lines
287 B
C
16 lines
287 B
C
#ifndef PARSER_H
|
|
#define PARSER_H
|
|
|
|
#include <stdint.h>
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <stdarg.h>
|
|
#include "list.h"
|
|
#include "token.h"
|
|
#include "opcodes.h"
|
|
#include "symbols_table.h"
|
|
|
|
void ParseTokens(List* tokens, SymbolTable** symbolsTable);
|
|
|
|
#endif |