#ifndef COMPILER_H #define COMPILER_H #ifdef __cplusplus extern "C" { #endif #include "Error.h" #include "vm/ByteCode.h" ByteCode* cCompile(Error* e); #ifdef __cplusplus } #endif #endif