9 lines
195 B
C
9 lines
195 B
C
#pragma once
|
|
|
|
struct context;
|
|
struct function;
|
|
struct node;
|
|
|
|
void emit(struct function *fn, struct context *ctx, struct node *expr);
|
|
void emit_function(struct context *ctx, struct function *fn);
|