diff options
Diffstat (limited to 'src/include/list.h')
-rw-r--r-- | src/include/list.h | 1 |
1 files changed, 1 insertions, 0 deletions
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); |