summaryrefslogtreecommitdiff
path: root/parser.h
blob: 5449b4f7d1ac21f4b1c9c4e746994c365c9af54a (plain)
1
2
3
4
5
6
7
8
#ifndef PARSER_H
#define PARSER_H

#include "ast.h"

struct root_node* parse(const char* path);

#endif