--- a/docs/Writerside/topics/list.h.md Thu May 15 15:43:30 2025 +0200 +++ b/docs/Writerside/topics/list.h.md Thu May 15 16:02:54 2025 +0200 @@ -26,7 +26,7 @@ The function `cxLinkedListCreate()` creates a new linked list with the specified `allocator` which stores elements of size `elem_size`. The elements are supposed to be compared with the specified `comparator` (cf. [](#access-and-find)). -The function `cxLinkedListCreateSimple()` will use the stdlib default allocator and does not specify a compare function. +The function `cxLinkedListCreateSimple()` will use the [default allocator](allocator.h.md#default-allocator) and does not specify a compare function. Array lists can be created with `cxArrayListCreate()` where the additional argument `initial_capacity` specifies for how many elements the underlying array shall be initially allocated.