Files
blisp/include/parser.h
T
Arthur Barraux ee2a34a3b1 test functions
2025-09-18 13:52:46 +02:00

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