summaryrefslogtreecommitdiff
path: root/parser.h
diff options
context:
space:
mode:
Diffstat (limited to 'parser.h')
-rw-r--r--parser.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/parser.h b/parser.h
new file mode 100644
index 0000000..5449b4f
--- /dev/null
+++ b/parser.h
@@ -0,0 +1,8 @@
+#ifndef PARSER_H
+#define PARSER_H
+
+#include "ast.h"
+
+struct root_node* parse(const char* path);
+
+#endif