From 3780f207f924f14734cb839fd015bd883fe52ff1 Mon Sep 17 00:00:00 2001 From: Preston Pan Date: Thu, 30 Jan 2025 21:02:42 -0800 Subject: restructure project --- src/include/list.h | 1 + 1 file changed, 1 insertion(+) (limited to 'src/include/list.h') diff --git a/src/include/list.h b/src/include/list.h index 055106a..a9d1539 100644 --- a/src/include/list.h +++ b/src/include/list.h @@ -13,6 +13,7 @@ typedef struct { size_t size; node_t *head; node_t *tail; + bool type; } list_t; node_t *init_node(void *item); -- cgit