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