13 lines
214 B
C
13 lines
214 B
C
#ifndef PARSER_H
|
|
#define PARSER_H
|
|
|
|
#include "expr.h"
|
|
#include "scanner.h"
|
|
#include "token.h"
|
|
#include <stdarg.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
|
|
Expr* GenerateExpressionTree(const TokenList* list);
|
|
|
|
#endif |