aboutsummaryrefslogtreecommitdiffstats
path: root/include/variable.h
diff options
context:
space:
mode:
authorClyne Sullivan <tullivan99@gmail.com>2018-02-12 11:23:59 -0500
committerClyne Sullivan <tullivan99@gmail.com>2018-02-12 11:23:59 -0500
commit100cb2f84ac5c44a904f7d7145cdc2ce1dcf59ba (patch)
tree73079f311b8ff81069bfd615eed0b55c52a5e4b6 /include/variable.h
parent025ed8530ce92d4a2282af8bba1b9e3e93afbb99 (diff)
libinterp, actually works
Diffstat (limited to 'include/variable.h')
-rw-r--r--include/variable.h21
1 files changed, 0 insertions, 21 deletions
diff --git a/include/variable.h b/include/variable.h
deleted file mode 100644
index 067ce13..0000000
--- a/include/variable.h
+++ /dev/null
@@ -1,21 +0,0 @@
-#ifndef VARIABLE_H_
-#define VARIABLE_H_
-
-#include <stdint.h>
-
-typedef struct {
- uint8_t used :1;
- uint8_t fromc :1;
- uint8_t valtype :2;
- uint32_t value;
- char *svalue;
-} variable;
-
-enum valtype {
- STRING = 0,
- INTEGER,
- FLOAT,
- FUNC
-};
-
-#endif // VARIABLE_H_