9 lines
149 B
C
9 lines
149 B
C
|
#ifndef CODEGEN_C_H
|
||
|
#define CODEGEN_C_H
|
||
|
|
||
|
#include "codegen.h"
|
||
|
|
||
|
void codegen_c(Writer *header, Writer *source, const char *name, Program *p);
|
||
|
|
||
|
#endif
|