lexer/parser.h

9 lines
107 B
C

#ifndef PARSER_H
#define PARSER_H
#include "token.h"
int parse(const struct token_list *tokens);
#endif