aboutsummaryrefslogtreecommitdiffstats
path: root/include/variable.h
diff options
context:
space:
mode:
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_