__virtualmath.h 488 B

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