diff options
Diffstat (limited to 'libc/list.c')
-rw-r--r-- | libc/list.c | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/libc/list.c b/libc/list.c index 7baae92..6e1f95d 100644 --- a/libc/list.c +++ b/libc/list.c @@ -13,6 +13,22 @@ struct list *list_new() return list; } +void list_destroy(struct list *list) +{ + struct node *iterator = list->head; + while (iterator != NULL) { + if (iterator->next == NULL) { + free(iterator); + break; + } + iterator = iterator->next; + free(iterator->prev); + } + list->head = NULL; + free(list); + list = NULL; +} + struct node *list_new_node() { struct node *node = malloc(sizeof(*node)); |