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