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

#include "ast.h"

void parse(const char* path, struct ast* ast);

#endif