12345678910111213141516171819202122232425262728293031 |
- #ifndef VIRTUALMATH___VIRTUALMATH_H
- #define VIRTUALMATH___VIRTUALMATH_H
- #include "__macro.h"
- #include "mem.h"
- #include "gc.h"
- #include "inter.h"
- #include "value.h"
- #include "var.h"
- #include "parameter.h"
- #include "statement.h"
- #include "ofunc.h"
- #include "run.h"
- #include "lexical.h"
- #include "token.h"
- #include "syntax.h"
- #include "grammar.h"
- #include "arguement.h"
- #include "file.h"
- #define DEBUG 1
- #if DEBUG
- /* DEBUG */
- void printGC(Inter *inter);
- void printLinkValueGC(char *tag, Inter *inter, long *tmp_link, long *st_link);
- void printValueGC(char *tag, Inter *inter, long *tmp_link, long *st_link);
- void printVarGC(char *tag, Inter *inter);
- void printHashTableGC(char *tag, Inter *inter, long *tmp_link);
- void printTokenStream(TokenStream *ts);
- #endif
- #endif //VIRTUALMATH___VIRTUALMATH_H
|