aboutsummaryrefslogtreecommitdiffstats
path: root/include/structs.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/structs.h')
-rw-r--r--include/structs.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/include/structs.h b/include/structs.h
index 035af45..7c39b4d 100644
--- a/include/structs.h
+++ b/include/structs.h
@@ -21,4 +21,13 @@ struct front_item {
struct front_item * prev;
clock_t time;
};
+
+struct tree_item {
+ long int depth;
+ long int itemi;
+ struct item values;
+ struct tree_item * prev;
+ struct tree_item * next;
+};
+
#endif