8 lines
106 B
C
8 lines
106 B
C
|
#include <ast.h>
|
||
|
|
||
|
#ifndef __CODEGEN_H__
|
||
|
#define __CODEGEN_H__
|
||
|
|
||
|
const char* codegen(ASTNode* node);
|
||
|
|
||
|
#endif
|