Compiler.h 135 B

123456789
  1. #ifndef COMPILER_H
  2. #define COMPILER_H
  3. #include <stdbool.h>
  4. unsigned char* cCompile(int* codeLength);
  5. const char* cGetError();
  6. #endif