forked from cosmonaut/wraith-lang
9 lines
153 B
C
9 lines
153 B
C
|
#ifndef WRAITH_CODEGEN_H
|
||
|
#define WRAITH_CODEGEN_H
|
||
|
|
||
|
#include "ast.h"
|
||
|
|
||
|
int Codegen(Node *node, uint32_t optimizationLevel);
|
||
|
|
||
|
#endif /* WRAITH_CODEGEN_H */
|