summaryrefslogtreecommitdiff
path: root/codegen.h
blob: 50bb105f6c092e466be300c29d47c02f229da213 (plain)
1
2
3
4
5
6
7
8
#ifndef CODEGEN_H
#define CODEGEN_H

#include "ast.h"

void emit_code(const struct root_node* ast, const char* path);

#endif