Compiler.h 204 B

123456789101112131415161718
  1. #ifndef COMPILER_H
  2. #define COMPILER_H
  3. #ifdef __cplusplus
  4. extern "C" {
  5. #endif
  6. #include "vm/ByteCode.h"
  7. ByteCode* cCompile();
  8. const char* cGetError();
  9. int cGetLine();
  10. #ifdef __cplusplus
  11. }
  12. #endif
  13. #endif