# HG changeset patch # User Mike Becker # Date 1613298619 -3600 # Node ID 5d167af0eadbe101ca0ecb09492d29b14569de42 # Parent dfdd571550f81a18b0e71ebe49972ddc79937be5 adds cxLinkedListDestroy prototype diff -r dfdd571550f8 -r 5d167af0eadb src/cx/linked_list.h --- a/src/cx/linked_list.h Mon Feb 08 00:20:52 2021 +0100 +++ b/src/cx/linked_list.h Sun Feb 14 11:30:19 2021 +0100 @@ -49,6 +49,8 @@ CxList cxLinkedListWrap(CxAllocator allocator, CxListComparator comparator, CxLinkedListDesc desc); +void cxLinkedListDestroy(CxList list); + size_t cxLinkedListRecalculateSize(CxList list); #endif /* UCX_LINKED_LIST_H */ diff -r dfdd571550f8 -r 5d167af0eadb src/linked_list.c --- a/src/linked_list.c Mon Feb 08 00:20:52 2021 +0100 +++ b/src/linked_list.c Sun Feb 14 11:30:19 2021 +0100 @@ -185,6 +185,10 @@ return list; } +void cxLinkedListDestroy(CxList list) { + +} + size_t cxLinkedListRecalculateSize(CxList list) { cx_linked_list *ll = (cx_linked_list *) list->data.listdata;