#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