framework for typechecking and code generation
[ccc.git] / gen.h
diff --git a/gen.h b/gen.h
new file mode 100644 (file)
index 0000000..ca695a4
--- /dev/null
+++ b/gen.h
@@ -0,0 +1,10 @@
+#ifndef GEN_H
+#define GEN_H
+
+#include <stdbool.h>
+
+#include "ast.h"
+
+bool gen(struct ast *res);
+
+#endif