src/cx/linked_list.h

changeset 528
4fbfac557df8
parent 526
b070ef465313
child 552
4373c2a90066
     1.1 --- a/src/cx/linked_list.h	Mon Apr 18 16:56:29 2022 +0200
     1.2 +++ b/src/cx/linked_list.h	Mon Apr 18 17:26:21 2022 +0200
     1.3 @@ -48,7 +48,7 @@
     1.4  /**
     1.5   * Allocates a linked list for storing elements with \p item_size bytes each.
     1.6   *
     1.7 - * @remark Elements added to the list are copied, therefore a possible cx_list_s.content_destructor
     1.8 + * @remark Elements added to the list are copied, therefore a possible destructor
     1.9   * MUST NOT free the memory pointed to by its argument.
    1.10   *
    1.11   * @param allocator the allocator for allocating the list nodes
    1.12 @@ -67,7 +67,7 @@
    1.13   *
    1.14   * If you want to store the elements directly in this list, use cxLinkedListCreate().
    1.15   *
    1.16 - * @remark Since only pointers are stored in this list, a possible cx_list_s.content_destructor
    1.17 + * @remark Since only pointers are stored in this list, a possible destructor
    1.18   * MAY free the memory pointed to by its argument in order to prevent memory leaks.
    1.19   *
    1.20   * @param allocator the allocator for allocating the list nodes
    1.21 @@ -82,7 +82,7 @@
    1.22  /**
    1.23   * Creates a linked list using the data from an array.
    1.24   *
    1.25 - * @remark Elements added to the list are copied, therefore a possible cx_list_s.content_destructor
    1.26 + * @remark Elements added to the list are copied, therefore a possible destructor
    1.27   * MUST NOT free the memory pointed to by its argument.
    1.28   *
    1.29   * @param allocator the allocator for allocating the list nodes

mercurial