__virtualmath.h 798 B

1234567891011121314151617181920212223242526272829303132
  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 "ofunc.h"
  12. #include "run.h"
  13. #include "lexical.h"
  14. #include "token.h"
  15. #include "syntax.h"
  16. #include "grammar.h"
  17. #include "arguement.h"
  18. #include "file.h"
  19. #define DEBUG 0
  20. #if DEBUG
  21. /* DEBUG */
  22. void printGC(Inter *inter);
  23. void printLinkValueGC(char *tag, Inter *inter, long *tmp_link, long *st_link);
  24. void printValueGC(char *tag, Inter *inter, long *tmp_link, long *st_link);
  25. void printVarGC(char *tag, Inter *inter);
  26. void printHashTableGC(char *tag, Inter *inter, long *tmp_link);
  27. void printTokenStream(TokenStream *ts);
  28. #endif
  29. #endif //VIRTUALMATH___VIRTUALMATH_H