src/cx/linked_list.h

changeset 669
dce9b8450656
parent 662
d0d95740071b
child 670
4ad8ea3aee49
     1.1 --- a/src/cx/linked_list.h	Tue Mar 21 17:21:20 2023 +0100
     1.2 +++ b/src/cx/linked_list.h	Tue Mar 28 19:13:33 2023 +0200
     1.3 @@ -54,6 +54,9 @@
     1.4  /**
     1.5   * Allocates a linked list for storing elements with \p item_size bytes each.
     1.6   *
     1.7 + * If \p item_size is CX_STORE_POINTERS, the created list will be created as if
     1.8 + * cxListStorePointers() was called immediately after creation.
     1.9 + *
    1.10   * @param allocator the allocator for allocating the list nodes
    1.11   * @param comparator the comparator for the elements
    1.12   * @param item_size the size of each element in bytes
    1.13 @@ -72,6 +75,9 @@
    1.14   * to call functions that need a comparator, you must either set one immediately
    1.15   * after list creation or use cxLinkedListCreate().
    1.16   *
    1.17 + * If \p item_size is CX_STORE_POINTERS, the created list will be created as if
    1.18 + * cxListStorePointers() was called immediately after creation.
    1.19 + *
    1.20   * @param item_size the size of each element in bytes
    1.21   * @return the created list
    1.22   */

mercurial