diff -r 2842f729caab -r af766caea48d src/cx/linked_list.h --- a/src/cx/linked_list.h Sun Feb 14 11:31:13 2021 +0100 +++ b/src/cx/linked_list.h Sun Feb 14 15:13:53 2021 +0100 @@ -38,17 +38,8 @@ extern cx_list_class cx_linked_list_class; -typedef struct { - void *begin; - ptrdiff_t loc_prev; - ptrdiff_t loc_next; - size_t item_size; -} CxLinkedListDesc; - CxList cxLinkedListCreate(CxAllocator allocator, CxListComparator comparator, size_t item_size); -CxList cxLinkedListWrap(CxAllocator allocator, CxListComparator comparator, CxLinkedListDesc desc); - void cxLinkedListDestroy(CxList list); size_t cxLinkedListRecalculateSize(CxList list);