Compiler.h 116 B

123456789
  1. #ifndef COMPILER_H
  2. #define COMPILER_H
  3. #include "ByteCode.h"
  4. ByteCode* cCompile();
  5. const char* cGetError();
  6. #endif