__virtualmath.h 438 B

123456789101112131415161718192021222324
  1. #ifndef VIRTUALMATH___VIRTUALMATH_H
  2. #define VIRTUALMATH___VIRTUALMATH_H
  3. #include "__macro.h"
  4. #include "mem.h"
  5. #include "statement.h"
  6. #include "run.h"
  7. #include "syntax.h"
  8. #include "lexical.h"
  9. #include "token.h"
  10. #include "grammar.h"
  11. #include "var.h"
  12. #include "value.h"
  13. #include "inter.h"
  14. #include "log.h"
  15. struct Args{
  16. char *file;
  17. char *log_file;
  18. int level;
  19. bool stdout_inter;
  20. } args;
  21. #endif //VIRTUALMATH___VIRTUALMATH_H