virtualmath.h 306 B

12345678910
  1. #ifndef VIRTUALMATH_VIRTUALMATH_H
  2. #define VIRTUALMATH_VIRTUALMATH_H
  3. #include "macro.h"
  4. #include "arguement.h"
  5. typedef struct Inter Inter;
  6. typedef struct Result Result;
  7. struct Inter *runBaseInter(char *code_file, char *debug_dir);
  8. void freeInter(Inter *inter, int self);
  9. #endif //VIRTUALMATH_VIRTUALMATH_H