15 lines
188 B
C
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
|