diff options
| author | Furkan Sahin <furkan-dev@proton.me> | 2018-12-09 01:15:23 +0000 |
|---|---|---|
| committer | Furkan Sahin <furkan-dev@proton.me> | 2018-12-09 01:15:23 +0000 |
| commit | 00560ef4351c7957ba975b5406221a2b00862704 (patch) | |
| tree | b47ccc174669786e3a1df9569046886c23003a45 /include/list.h | |
| parent | 850ad475bab0657dab088df1feeb595a8b9b94d6 (diff) | |
list.c: rename free_flat_list to list_free_items_and_destroy
Diffstat (limited to 'include/list.h')
| -rw-r--r-- | include/list.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/list.h b/include/list.h index 70af49f6..895f6cc0 100644 --- a/include/list.h +++ b/include/list.h @@ -31,5 +31,5 @@ void list_move_to_end(list_t *list, void *item); * Do not use this to free lists of primitives or items that require more * complicated deallocation code. */ -void free_flat_list(list_t *list); +void list_free_items_and_destroy(list_t *list); #endif |
