__virtualmath.h 796 B

1234567891011121314151617181920212223242526272829303132333435
  1. #ifndef VIRTUALMATH___VIRTUALMATH_H
  2. #define VIRTUALMATH___VIRTUALMATH_H
  3. #include "__macro.h"
  4. #include "mem.h"
  5. #include "handler.h"
  6. #include "file.h"
  7. #include "md5.h"
  8. #include "gc.h"
  9. #include "value.h"
  10. #include "parameter.h"
  11. #include "statement.h"
  12. #include "var.h"
  13. #include "inter.h"
  14. #include "ofunc.h"
  15. #include "clib.h"
  16. #include "run.h"
  17. #include "lexical.h"
  18. #include "token.h"
  19. #include "syntax.h"
  20. #include "grammar.h"
  21. #if DEBUG
  22. /* DEBUG所使用的函数 */
  23. void printGC(Inter *inter);
  24. void printLinkValueGC(char *tag, Inter *inter, long *tmp_link, long *st_link);
  25. void printValueGC(char *tag, Inter *inter, long *tmp_link, long *st_link);
  26. void printVarGC(char *tag, Inter *inter);
  27. void printHashTableGC(char *tag, Inter *inter, long *tmp_link);
  28. #endif
  29. #endif //VIRTUALMATH___VIRTUALMATH_H