virtualmath.h 381 B

123456789101112
  1. #ifndef VIRTUALMATH_VIRTUALMATH_H
  2. #define VIRTUALMATH_VIRTUALMATH_H
  3. #include "macro.h"
  4. #include "arguement.h"
  5. extern jmp_buf memVirtualMath_Env;
  6. extern bool memVirtualMathUseJmp;
  7. typedef struct Inter Inter;
  8. typedef struct Result Result;
  9. Inter *runBaseInter(char *code_file, char *debug_dir, int *status);
  10. void freeInter(Inter *inter, int self);
  11. #endif //VIRTUALMATH_VIRTUALMATH_H