summaryrefslogtreecommitdiff
path: root/parser.c
diff options
context:
space:
mode:
Diffstat (limited to 'parser.c')
-rw-r--r--parser.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/parser.c b/parser.c
index c1bedeb..421a044 100644
--- a/parser.c
+++ b/parser.c
@@ -1,4 +1,10 @@
#include <stdio.h>
#include <string.h>
+#include "parser.h"
+
+AST* parse(const char *source){
+ (void)source;
+ return NULL;
+}