aboutsummaryrefslogtreecommitdiffstats
path: root/old/variable.h
diff options
context:
space:
mode:
Diffstat (limited to 'old/variable.h')
-rw-r--r--old/variable.h24
1 files changed, 0 insertions, 24 deletions
diff --git a/old/variable.h b/old/variable.h
deleted file mode 100644
index fd84a6e..0000000
--- a/old/variable.h
+++ /dev/null
@@ -1,24 +0,0 @@
-#ifndef TOKEN_H_
-#define TOKEN_H_
-
-#include <stdint.h>
-
-typedef struct {
- uint16_t nameidx;
- uint8_t type;
- uint8_t info;
- uint32_t value;
-} variable;
-
-#define INFO_ARGS(x) ((x) & 0x07)
-#define INFO_RET (1 << 3)
-
-enum vartype {
- VALUE = 0,
- VARIABLE,
- OPERATOR,
- FUNCTION,
- CFUNCTION
-};
-
-#endif // TOKEN_H_