1234567891011121314151617181920212223242526 |
- #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 "run.h"
- #include "lexical.h"
- #include "token.h"
- #include "syntax.h"
- #include "grammar.h"
- #include "log.h"
- #include "arguement.h"
- #include "file.h"
- /* DEBUG */
- void printLinkValueGC(char *tag, Inter *inter);
- void printValueGC(char *tag, Inter *inter);
- void printVarGC(char *tag, Inter *inter);
- void showLinkValue(struct LinkValue *base);
- #endif //VIRTUALMATH___VIRTUALMATH_H
|