#ifndef COMPILER_H #define COMPILER_H #ifdef __cplusplus extern "C" { #endif #include "vm/ByteCode.h" ByteCode* cCompile(); const char* cGetError(); int cGetLine(); #ifdef __cplusplus } #endif #endif