aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/codegen.h
blob: 6a75179f6784baa2c7641d954d33f4e28ec9296a (plain)
1
2
3
4
5
6
7
8
9
#ifndef DUCC_CODEGEN_H
#define DUCC_CODEGEN_H

#include <stdio.h>
#include "ast.h"

void codegen(Program* prog, FILE* out);

#endif