12345678910 |
- #ifndef VIRTUALMATH_VIRTUALMATH_H
- #define VIRTUALMATH_VIRTUALMATH_H
- #include "macro.h"
- #include "arguement.h"
- typedef struct Inter Inter;
- typedef struct Result Result;
- Inter *runBaseInter(char *code_file, char *debug_dir, int *status);
- void freeInter(Inter *inter, int self);
- #endif //VIRTUALMATH_VIRTUALMATH_H
|