rutile/compiler/cgC.h
2025-01-12 18:20:42 -03:00

15 lines
188 B
C

#ifndef _cgC_h_
#define _cgC_h_
#include "codegen.h"
#include "ast.h"
typedef struct {
CodegenCtx *cgctx;
int indent;
} CodegenC;
void
cgC(CodegenC *cgc, const Ast *program);
#endif