10 lines
126 B
C
10 lines
126 B
C
#ifndef PARSER_H_
|
|
#define PARSER_H_
|
|
|
|
#include "data.h"
|
|
|
|
Value *parse_list(Lexer *lex);
|
|
Value *parse_expr(Lexer *lex);
|
|
|
|
#endif
|