__virtualmath.h 612 B

1234567891011121314151617181920212223242526
  1. #ifndef VIRTUALMATH___VIRTUALMATH_H
  2. #define VIRTUALMATH___VIRTUALMATH_H
  3. #include "__macro.h"
  4. #include "mem.h"
  5. #include "gc.h"
  6. #include "inter.h"
  7. #include "value.h"
  8. #include "var.h"
  9. #include "parameter.h"
  10. #include "statement.h"
  11. #include "run.h"
  12. #include "lexical.h"
  13. #include "token.h"
  14. #include "syntax.h"
  15. #include "grammar.h"
  16. #include "log.h"
  17. #include "arguement.h"
  18. #include "file.h"
  19. /* DEBUG */
  20. void printLinkValueGC(char *tag, Inter *inter);
  21. void printValueGC(char *tag, Inter *inter);
  22. void printVarGC(char *tag, Inter *inter);
  23. void showLinkValue(struct LinkValue *base);
  24. #endif //VIRTUALMATH___VIRTUALMATH_H