Files
gw-basic-2026/include/codegen.h
T

11 lines
182 B
C
Raw Normal View History

#ifndef CODEGEN_H
#define CODEGEN_H
#include "analysis.h"
#include <stdio.h>
/* Generate C source from the analyzed program */
void codegen_emit(FILE *out, analysis_t *a);
#endif