summaryrefslogtreecommitdiff
path: root/parser.h
diff options
context:
space:
mode:
authorCarson Fleming <[email protected]>2026-03-26 16:21:29 -0400
committerCarson Fleming <[email protected]>2026-03-26 16:22:00 -0400
commit7d9fb2c733c8c64f6f74eefa0eea35b36be102cd (patch)
tree16b6cded5f9611e0ff1948395578845c9688b926 /parser.h
parent68db110d34611fc8bb79035d3a11bba07dea43f3 (diff)
downloadccc-7d9fb2c733c8c64f6f74eefa0eea35b36be102cd.tar.gz
let's go we can parse return zero most useful program ever
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