ucx/cx/linked_list.h

Wed, 31 Dec 2025 16:40:12 +0100

author
Olaf Wintermann <olaf.wintermann@gmail.com>
date
Wed, 31 Dec 2025 16:40:12 +0100
changeset 1040
473d8cb58a6c
parent 1016
ccde46662db7
permissions
-rw-r--r--

update ucx to version 4.0

174
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
1 /*
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
2 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
3 *
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
4 * Copyright 2021 Mike Becker, Olaf Wintermann All rights reserved.
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
5 *
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
6 * Redistribution and use in source and binary forms, with or without
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
7 * modification, are permitted provided that the following conditions are met:
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
8 *
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
9 * 1. Redistributions of source code must retain the above copyright
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
10 * notice, this list of conditions and the following disclaimer.
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
11 *
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
12 * 2. Redistributions in binary form must reproduce the above copyright
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
13 * notice, this list of conditions and the following disclaimer in the
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
14 * documentation and/or other materials provided with the distribution.
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
15 *
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
16 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
17 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
18 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
19 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
20 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
21 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
22 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
23 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
24 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
25 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
26 * POSSIBILITY OF SUCH DAMAGE.
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
27 */
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
28 /**
440
7c4b9cba09ca update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 324
diff changeset
29 * @file linked_list.h
7c4b9cba09ca update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 324
diff changeset
30 * @brief Linked list implementation.
7c4b9cba09ca update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 324
diff changeset
31 * @author Mike Becker
7c4b9cba09ca update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 324
diff changeset
32 * @author Olaf Wintermann
7c4b9cba09ca update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 324
diff changeset
33 * @copyright 2-Clause BSD License
174
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
34 */
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
35
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
36 #ifndef UCX_LINKED_LIST_H
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
37 #define UCX_LINKED_LIST_H
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
38
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
39 #include "common.h"
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
40 #include "list.h"
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
41
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
42 /**
845
f3ab28ed22e5 update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 629
diff changeset
43 * Metadata for a linked list.
f3ab28ed22e5 update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 629
diff changeset
44 */
f3ab28ed22e5 update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 629
diff changeset
45 typedef struct cx_linked_list_s {
f3ab28ed22e5 update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 629
diff changeset
46 /** Base members. */
f3ab28ed22e5 update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 629
diff changeset
47 struct cx_list_s base;
f3ab28ed22e5 update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 629
diff changeset
48 /**
f3ab28ed22e5 update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 629
diff changeset
49 * Location of the prev pointer (mandatory).
f3ab28ed22e5 update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 629
diff changeset
50 */
f3ab28ed22e5 update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 629
diff changeset
51 off_t loc_prev;
f3ab28ed22e5 update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 629
diff changeset
52 /**
f3ab28ed22e5 update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 629
diff changeset
53 * Location of the next pointer (mandatory).
f3ab28ed22e5 update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 629
diff changeset
54 */
f3ab28ed22e5 update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 629
diff changeset
55 off_t loc_next;
f3ab28ed22e5 update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 629
diff changeset
56 /**
f3ab28ed22e5 update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 629
diff changeset
57 * Location of the payload (mandatory).
f3ab28ed22e5 update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 629
diff changeset
58 */
f3ab28ed22e5 update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 629
diff changeset
59 off_t loc_data;
f3ab28ed22e5 update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 629
diff changeset
60 /**
943
9b5948aa5b90 update ucx to version 3.2
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 870
diff changeset
61 * Location of extra data (optional).
9b5948aa5b90 update ucx to version 3.2
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 870
diff changeset
62 * Negative when no extra data is requested.
9b5948aa5b90 update ucx to version 3.2
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 870
diff changeset
63 * @see cx_linked_list_extra_data()
9b5948aa5b90 update ucx to version 3.2
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 870
diff changeset
64 */
9b5948aa5b90 update ucx to version 3.2
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 870
diff changeset
65 off_t loc_extra;
9b5948aa5b90 update ucx to version 3.2
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 870
diff changeset
66 /**
845
f3ab28ed22e5 update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 629
diff changeset
67 * Additional bytes to allocate @em behind the payload (e.g. for metadata).
943
9b5948aa5b90 update ucx to version 3.2
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 870
diff changeset
68 * @see cx_linked_list_extra_data()
845
f3ab28ed22e5 update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 629
diff changeset
69 */
f3ab28ed22e5 update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 629
diff changeset
70 size_t extra_data_len;
f3ab28ed22e5 update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 629
diff changeset
71 /**
f3ab28ed22e5 update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 629
diff changeset
72 * Pointer to the first node.
f3ab28ed22e5 update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 629
diff changeset
73 */
f3ab28ed22e5 update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 629
diff changeset
74 void *begin;
f3ab28ed22e5 update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 629
diff changeset
75 /**
f3ab28ed22e5 update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 629
diff changeset
76 * Pointer to the last node.
f3ab28ed22e5 update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 629
diff changeset
77 */
f3ab28ed22e5 update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 629
diff changeset
78 void *end;
f3ab28ed22e5 update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 629
diff changeset
79 } cx_linked_list;
f3ab28ed22e5 update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 629
diff changeset
80
f3ab28ed22e5 update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 629
diff changeset
81 /**
440
7c4b9cba09ca update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 324
diff changeset
82 * Allocates a linked list for storing elements with @p elem_size bytes each.
174
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
83 *
471
063a9f29098c ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 440
diff changeset
84 * If @p elem_size is #CX_STORE_POINTERS, the created list stores pointers instead of
845
f3ab28ed22e5 update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 629
diff changeset
85 * copies of the added elements, and the compare function will be automatically set
1016
ccde46662db7 update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 943
diff changeset
86 * to cx_cmp_ptr().
174
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
87 *
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
88 * @param allocator the allocator for allocating the list nodes
629
0385a450c2a6 add list initializer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 471
diff changeset
89 * (if @c NULL, the cxDefaultAllocator will be used)
324
ce13a778654a update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 253
diff changeset
90 * @param elem_size the size of each element in bytes
174
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
91 * @return the created list
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
92 */
1040
473d8cb58a6c update ucx to version 4.0
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 1016
diff changeset
93 CX_EXTERN CX_NODISCARD CX_MALLOC CX_DEALLOC(cxListFree, 1)
473d8cb58a6c update ucx to version 4.0
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 1016
diff changeset
94 CxList *cxLinkedListCreate(const CxAllocator *allocator,
1016
ccde46662db7 update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 943
diff changeset
95 size_t elem_size);
174
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
96
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
97 /**
943
9b5948aa5b90 update ucx to version 3.2
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 870
diff changeset
98 * Instructs the linked list to reserve extra data in each node.
9b5948aa5b90 update ucx to version 3.2
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 870
diff changeset
99 *
9b5948aa5b90 update ucx to version 3.2
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 870
diff changeset
100 * The extra data will be aligned and placed behind the element data.
9b5948aa5b90 update ucx to version 3.2
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 870
diff changeset
101 * The exact location in the node is stored in the @c loc_extra field
9b5948aa5b90 update ucx to version 3.2
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 870
diff changeset
102 * of the linked list.
9b5948aa5b90 update ucx to version 3.2
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 870
diff changeset
103 *
9b5948aa5b90 update ucx to version 3.2
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 870
diff changeset
104 * You should usually not use this function except when you are creating an
9b5948aa5b90 update ucx to version 3.2
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 870
diff changeset
105 * own linked-list implementation that is based on the UCX linked list and
9b5948aa5b90 update ucx to version 3.2
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 870
diff changeset
106 * needs to store extra data in each node.
9b5948aa5b90 update ucx to version 3.2
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 870
diff changeset
107 *
9b5948aa5b90 update ucx to version 3.2
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 870
diff changeset
108 * @param list the list (must be a linked list)
9b5948aa5b90 update ucx to version 3.2
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 870
diff changeset
109 * @param len the length of the extra data
9b5948aa5b90 update ucx to version 3.2
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 870
diff changeset
110 */
1040
473d8cb58a6c update ucx to version 4.0
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 1016
diff changeset
111 CX_EXTERN CX_NONNULL
473d8cb58a6c update ucx to version 4.0
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 1016
diff changeset
112 void cx_linked_list_extra_data(cx_linked_list *list, size_t len);
943
9b5948aa5b90 update ucx to version 3.2
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 870
diff changeset
113
9b5948aa5b90 update ucx to version 3.2
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 870
diff changeset
114 /**
174
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
115 * Finds the node at a certain index.
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
116 *
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
117 * This function can be used to start at an arbitrary position within the list.
845
f3ab28ed22e5 update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 629
diff changeset
118 * If the search index is larger than the start index, @p loc_advance must denote
f3ab28ed22e5 update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 629
diff changeset
119 * the location of a @c next pointer (i.e., a pointer to the next node).
174
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
120 * But it is also possible that the search index is smaller than the start index
845
f3ab28ed22e5 update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 629
diff changeset
121 * (e.g., in cases where traversing a list backwards is faster).
f3ab28ed22e5 update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 629
diff changeset
122 * In that case @p loc_advance must denote the location of a @c prev pointer
f3ab28ed22e5 update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 629
diff changeset
123 * (i.e., a pointer to the previous node).
174
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
124 *
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
125 * @param start a pointer to the start node
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
126 * @param start_index the start index
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
127 * @param loc_advance the location of the pointer to advance
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
128 * @param index the search index
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
129 * @return the node found at the specified index
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
130 */
1040
473d8cb58a6c update ucx to version 4.0
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 1016
diff changeset
131 CX_EXTERN CX_NONNULL CX_NODISCARD
473d8cb58a6c update ucx to version 4.0
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 1016
diff changeset
132 void *cx_linked_list_at(const void *start,size_t start_index,
870
e167cf006213 update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 845
diff changeset
133 ptrdiff_t loc_advance, size_t index);
174
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
134
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
135 /**
471
063a9f29098c ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 440
diff changeset
136 * Finds the node containing an element within a linked list.
174
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
137 *
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
138 * @param start a pointer to the start node
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
139 * @param loc_advance the location of the pointer to advance
440
7c4b9cba09ca update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 324
diff changeset
140 * @param loc_data the location of the @c data pointer within your node struct
174
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
141 * @param elem a pointer to the element to find
471
063a9f29098c ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 440
diff changeset
142 * @param found_index an optional pointer where the index of the found node
063a9f29098c ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 440
diff changeset
143 * (given that @p start has index 0) is stored
1016
ccde46662db7 update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 943
diff changeset
144 * @param cmp_func a compare function to compare @p elem against the node data
845
f3ab28ed22e5 update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 629
diff changeset
145 * @return a pointer to the found node or @c NULL if no matching node was found
174
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
146 */
1040
473d8cb58a6c update ucx to version 4.0
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 1016
diff changeset
147 CX_EXTERN CX_NONNULL_ARG(1, 4, 6)
473d8cb58a6c update ucx to version 4.0
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 1016
diff changeset
148 void *cx_linked_list_find(const void *start, ptrdiff_t loc_advance,
1016
ccde46662db7 update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 943
diff changeset
149 ptrdiff_t loc_data, const void *elem, size_t *found_index,
ccde46662db7 update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 943
diff changeset
150 cx_compare_func cmp_func);
ccde46662db7 update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 943
diff changeset
151
ccde46662db7 update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 943
diff changeset
152 /**
ccde46662db7 update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 943
diff changeset
153 * Finds the node containing an element within a linked list.
ccde46662db7 update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 943
diff changeset
154 *
ccde46662db7 update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 943
diff changeset
155 * @param start a pointer to the start node
ccde46662db7 update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 943
diff changeset
156 * @param loc_advance the location of the pointer to advance
ccde46662db7 update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 943
diff changeset
157 * @param loc_data the location of the @c data pointer within your node struct
ccde46662db7 update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 943
diff changeset
158 * @param elem a pointer to the element to find
ccde46662db7 update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 943
diff changeset
159 * @param found_index an optional pointer where the index of the found node
ccde46662db7 update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 943
diff changeset
160 * (given that @p start has index 0) is stored
ccde46662db7 update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 943
diff changeset
161 * @param cmp_func a compare function to compare @p elem against the node data
ccde46662db7 update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 943
diff changeset
162 * @param context additional context for the compare function
ccde46662db7 update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 943
diff changeset
163 * @return a pointer to the found node or @c NULL if no matching node was found
ccde46662db7 update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 943
diff changeset
164 */
1040
473d8cb58a6c update ucx to version 4.0
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 1016
diff changeset
165 CX_EXTERN CX_NONNULL_ARG(1, 4, 6)
473d8cb58a6c update ucx to version 4.0
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 1016
diff changeset
166 void *cx_linked_list_find_c(const void *start, ptrdiff_t loc_advance,
1016
ccde46662db7 update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 943
diff changeset
167 ptrdiff_t loc_data, const void *elem, size_t *found_index,
ccde46662db7 update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 943
diff changeset
168 cx_compare_func2 cmp_func, void *context);
253
087cc9216f28 initial newapi GTK port
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 174
diff changeset
169
087cc9216f28 initial newapi GTK port
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 174
diff changeset
170 /**
174
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
171 * Finds the first node in a linked list.
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
172 *
440
7c4b9cba09ca update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 324
diff changeset
173 * The function starts with the pointer denoted by @p node and traverses the list
174
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
174 * along a prev pointer whose location within the node struct is
440
7c4b9cba09ca update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 324
diff changeset
175 * denoted by @p loc_prev.
174
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
176 *
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
177 * @param node a pointer to a node in the list
440
7c4b9cba09ca update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 324
diff changeset
178 * @param loc_prev the location of the @c prev pointer
174
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
179 * @return a pointer to the first node
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
180 */
1040
473d8cb58a6c update ucx to version 4.0
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 1016
diff changeset
181 CX_EXTERN CX_NONNULL CX_RETURNS_NONNULL
473d8cb58a6c update ucx to version 4.0
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 1016
diff changeset
182 void *cx_linked_list_first(const void *node, ptrdiff_t loc_prev);
174
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
183
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
184 /**
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
185 * Finds the last node in a linked list.
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
186 *
440
7c4b9cba09ca update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 324
diff changeset
187 * The function starts with the pointer denoted by @p node and traverses the list
174
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
188 * along a next pointer whose location within the node struct is
440
7c4b9cba09ca update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 324
diff changeset
189 * denoted by @p loc_next.
174
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
190 *
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
191 * @param node a pointer to a node in the list
440
7c4b9cba09ca update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 324
diff changeset
192 * @param loc_next the location of the @c next pointer
174
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
193 * @return a pointer to the last node
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
194 */
1040
473d8cb58a6c update ucx to version 4.0
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 1016
diff changeset
195 CX_EXTERN CX_NONNULL CX_RETURNS_NONNULL
473d8cb58a6c update ucx to version 4.0
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 1016
diff changeset
196 void *cx_linked_list_last(const void *node, ptrdiff_t loc_next);
174
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
197
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
198 /**
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
199 * Finds the predecessor of a node in case it is not linked.
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
200 *
440
7c4b9cba09ca update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 324
diff changeset
201 * @remark If @p node is not contained in the list starting with @p begin, the behavior is undefined.
174
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
202 *
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
203 * @param begin the node where to start the search
440
7c4b9cba09ca update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 324
diff changeset
204 * @param loc_next the location of the @c next pointer
174
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
205 * @param node the successor of the node to find
440
7c4b9cba09ca update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 324
diff changeset
206 * @return the node or @c NULL if @p node has no predecessor
174
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
207 */
1040
473d8cb58a6c update ucx to version 4.0
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 1016
diff changeset
208 CX_EXTERN CX_NONNULL
473d8cb58a6c update ucx to version 4.0
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 1016
diff changeset
209 void *cx_linked_list_prev(const void *begin, ptrdiff_t loc_next, const void *node);
174
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
210
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
211 /**
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
212 * Adds a new node to a linked list.
845
f3ab28ed22e5 update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 629
diff changeset
213 * The node must not be part of any list yet.
174
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
214 *
440
7c4b9cba09ca update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 324
diff changeset
215 * @remark One of the pointers @p begin or @p end may be @c NULL, but not both.
174
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
216 *
440
7c4b9cba09ca update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 324
diff changeset
217 * @param begin a pointer to the beginning node pointer (if your list has one)
174
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
218 * @param end a pointer to the end node pointer (if your list has one)
440
7c4b9cba09ca update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 324
diff changeset
219 * @param loc_prev the location of a @c prev pointer within your node struct (negative if your struct does not have one)
7c4b9cba09ca update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 324
diff changeset
220 * @param loc_next the location of a @c next pointer within your node struct (required)
174
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
221 * @param new_node a pointer to the node that shall be appended
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
222 */
1040
473d8cb58a6c update ucx to version 4.0
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 1016
diff changeset
223 CX_EXTERN CX_NONNULL_ARG(5)
473d8cb58a6c update ucx to version 4.0
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 1016
diff changeset
224 void cx_linked_list_add(void **begin, void **end, ptrdiff_t loc_prev, ptrdiff_t loc_next, void *new_node);
174
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
225
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
226 /**
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
227 * Prepends a new node to a linked list.
845
f3ab28ed22e5 update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 629
diff changeset
228 * The node must not be part of any list yet.
174
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
229 *
440
7c4b9cba09ca update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 324
diff changeset
230 * @remark One of the pointers @p begin or @p end may be @c NULL, but not both.
174
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
231 *
440
7c4b9cba09ca update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 324
diff changeset
232 * @param begin a pointer to the beginning node pointer (if your list has one)
174
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
233 * @param end a pointer to the end node pointer (if your list has one)
440
7c4b9cba09ca update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 324
diff changeset
234 * @param loc_prev the location of a @c prev pointer within your node struct (negative if your struct does not have one)
7c4b9cba09ca update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 324
diff changeset
235 * @param loc_next the location of a @c next pointer within your node struct (required)
174
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
236 * @param new_node a pointer to the node that shall be prepended
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
237 */
1040
473d8cb58a6c update ucx to version 4.0
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 1016
diff changeset
238 CX_EXTERN CX_NONNULL_ARG(5)
473d8cb58a6c update ucx to version 4.0
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 1016
diff changeset
239 void cx_linked_list_prepend(void **begin, void **end, ptrdiff_t loc_prev, ptrdiff_t loc_next, void *new_node);
174
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
240
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
241 /**
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
242 * Links two nodes.
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
243 *
440
7c4b9cba09ca update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 324
diff changeset
244 * @param left the new predecessor of @p right
7c4b9cba09ca update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 324
diff changeset
245 * @param right the new successor of @p left
7c4b9cba09ca update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 324
diff changeset
246 * @param loc_prev the location of a @c prev pointer within your node struct (negative if your struct does not have one)
7c4b9cba09ca update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 324
diff changeset
247 * @param loc_next the location of a @c next pointer within your node struct (required)
174
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
248 */
1040
473d8cb58a6c update ucx to version 4.0
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 1016
diff changeset
249 CX_EXTERN CX_NONNULL
473d8cb58a6c update ucx to version 4.0
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 1016
diff changeset
250 void cx_linked_list_link(void *left, void *right, ptrdiff_t loc_prev, ptrdiff_t loc_next);
174
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
251
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
252 /**
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
253 * Unlinks two nodes.
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
254 *
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
255 * If right is not the successor of left, the behavior is undefined.
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
256 *
440
7c4b9cba09ca update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 324
diff changeset
257 * @param left the predecessor of @p right
7c4b9cba09ca update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 324
diff changeset
258 * @param right the successor of @p left
7c4b9cba09ca update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 324
diff changeset
259 * @param loc_prev the location of a @c prev pointer within your node struct (negative if your struct does not have one)
7c4b9cba09ca update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 324
diff changeset
260 * @param loc_next the location of a @c next pointer within your node struct (required)
174
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
261 */
1040
473d8cb58a6c update ucx to version 4.0
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 1016
diff changeset
262 CX_EXTERN CX_NONNULL
473d8cb58a6c update ucx to version 4.0
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 1016
diff changeset
263 void cx_linked_list_unlink(void *left, void *right, ptrdiff_t loc_prev, ptrdiff_t loc_next);
174
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
264
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
265 /**
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
266 * Inserts a new node after a given node of a linked list.
845
f3ab28ed22e5 update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 629
diff changeset
267 * The new node must not be part of any list yet.
174
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
268 *
440
7c4b9cba09ca update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 324
diff changeset
269 * @note If you specify @c NULL as the @p node to insert after, this function needs either the @p begin or
7c4b9cba09ca update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 324
diff changeset
270 * the @p end pointer to determine the start of the list. Then the new node will be prepended to the list.
174
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
271 *
440
7c4b9cba09ca update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 324
diff changeset
272 * @param begin a pointer to the beginning node pointer (if your list has one)
174
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
273 * @param end a pointer to the end node pointer (if your list has one)
440
7c4b9cba09ca update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 324
diff changeset
274 * @param loc_prev the location of a @c prev pointer within your node struct (negative if your struct does not have one)
7c4b9cba09ca update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 324
diff changeset
275 * @param loc_next the location of a @c next pointer within your node struct (required)
7c4b9cba09ca update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 324
diff changeset
276 * @param node the node after which to insert (@c NULL if you want to prepend the node to the list)
324
ce13a778654a update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 253
diff changeset
277 * @param new_node a pointer to the node that shall be inserted
174
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
278 */
1040
473d8cb58a6c update ucx to version 4.0
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 1016
diff changeset
279 CX_EXTERN CX_NONNULL_ARG(6)
473d8cb58a6c update ucx to version 4.0
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 1016
diff changeset
280 void cx_linked_list_insert(void **begin, void **end,
870
e167cf006213 update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 845
diff changeset
281 ptrdiff_t loc_prev, ptrdiff_t loc_next, void *node, void *new_node);
174
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
282
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
283 /**
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
284 * Inserts a chain of nodes after a given node of a linked list.
845
f3ab28ed22e5 update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 629
diff changeset
285 * The chain must not be part of any list yet.
174
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
286 *
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
287 * If you do not explicitly specify the end of the chain, it will be determined by traversing
440
7c4b9cba09ca update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 324
diff changeset
288 * the @c next pointer.
174
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
289 *
440
7c4b9cba09ca update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 324
diff changeset
290 * @note If you specify @c NULL as the @p node to insert after, this function needs either the @p begin or
7c4b9cba09ca update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 324
diff changeset
291 * the @p end pointer to determine the start of the list. If only the @p end pointer is specified, you also need
7c4b9cba09ca update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 324
diff changeset
292 * to provide a valid @p loc_prev location.
174
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
293 * Then the chain will be prepended to the list.
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
294 *
440
7c4b9cba09ca update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 324
diff changeset
295 * @param begin a pointer to the beginning node pointer (if your list has one)
174
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
296 * @param end a pointer to the end node pointer (if your list has one)
440
7c4b9cba09ca update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 324
diff changeset
297 * @param loc_prev the location of a @c prev pointer within your node struct (negative if your struct does not have one)
7c4b9cba09ca update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 324
diff changeset
298 * @param loc_next the location of a @c next pointer within your node struct (required)
7c4b9cba09ca update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 324
diff changeset
299 * @param node the node after which to insert (@c NULL to prepend the chain to the list)
174
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
300 * @param insert_begin a pointer to the first node of the chain that shall be inserted
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
301 * @param insert_end a pointer to the last node of the chain (or NULL if the last node shall be determined)
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
302 */
1040
473d8cb58a6c update ucx to version 4.0
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 1016
diff changeset
303 CX_EXTERN CX_NONNULL_ARG(6)
473d8cb58a6c update ucx to version 4.0
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 1016
diff changeset
304 void cx_linked_list_insert_chain(void **begin, void **end,
870
e167cf006213 update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 845
diff changeset
305 ptrdiff_t loc_prev, ptrdiff_t loc_next, void *node, void *insert_begin, void *insert_end);
324
ce13a778654a update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 253
diff changeset
306
ce13a778654a update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 253
diff changeset
307 /**
ce13a778654a update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 253
diff changeset
308 * Inserts a node into a sorted linked list.
845
f3ab28ed22e5 update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 629
diff changeset
309 * The new node must not be part of any list yet.
324
ce13a778654a update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 253
diff changeset
310 *
440
7c4b9cba09ca update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 324
diff changeset
311 * If the list starting with the node pointed to by @p begin is not sorted
324
ce13a778654a update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 253
diff changeset
312 * already, the behavior is undefined.
ce13a778654a update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 253
diff changeset
313 *
440
7c4b9cba09ca update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 324
diff changeset
314 * @param begin a pointer to the beginning node pointer (required)
324
ce13a778654a update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 253
diff changeset
315 * @param end a pointer to the end node pointer (if your list has one)
440
7c4b9cba09ca update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 324
diff changeset
316 * @param loc_prev the location of a @c prev pointer within your node struct (negative if your struct does not have one)
7c4b9cba09ca update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 324
diff changeset
317 * @param loc_next the location of a @c next pointer within your node struct (required)
324
ce13a778654a update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 253
diff changeset
318 * @param new_node a pointer to the node that shall be inserted
ce13a778654a update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 253
diff changeset
319 * @param cmp_func a compare function that will receive the node pointers
ce13a778654a update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 253
diff changeset
320 */
1040
473d8cb58a6c update ucx to version 4.0
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 1016
diff changeset
321 CX_EXTERN CX_NONNULL_ARG(1, 5, 6)
473d8cb58a6c update ucx to version 4.0
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 1016
diff changeset
322 void cx_linked_list_insert_sorted(void **begin, void **end,
870
e167cf006213 update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 845
diff changeset
323 ptrdiff_t loc_prev, ptrdiff_t loc_next, void *new_node, cx_compare_func cmp_func);
324
ce13a778654a update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 253
diff changeset
324
ce13a778654a update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 253
diff changeset
325 /**
ce13a778654a update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 253
diff changeset
326 * Inserts a chain of nodes into a sorted linked list.
845
f3ab28ed22e5 update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 629
diff changeset
327 * The chain must not be part of any list yet.
324
ce13a778654a update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 253
diff changeset
328 *
440
7c4b9cba09ca update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 324
diff changeset
329 * If either the list starting with the node pointed to by @p begin or the list
7c4b9cba09ca update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 324
diff changeset
330 * starting with @p insert_begin is not sorted, the behavior is undefined.
324
ce13a778654a update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 253
diff changeset
331 *
440
7c4b9cba09ca update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 324
diff changeset
332 * @attention In contrast to cx_linked_list_insert_chain(), the source chain
324
ce13a778654a update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 253
diff changeset
333 * will be broken and inserted into the target list so that the resulting list
845
f3ab28ed22e5 update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 629
diff changeset
334 * will be sorted according to @p cmp_func. That means each node in the source
324
ce13a778654a update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 253
diff changeset
335 * chain may be re-linked with nodes from the target list.
ce13a778654a update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 253
diff changeset
336 *
440
7c4b9cba09ca update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 324
diff changeset
337 * @param begin a pointer to the beginning node pointer (required)
324
ce13a778654a update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 253
diff changeset
338 * @param end a pointer to the end node pointer (if your list has one)
440
7c4b9cba09ca update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 324
diff changeset
339 * @param loc_prev the location of a @c prev pointer within your node struct (negative if your struct does not have one)
7c4b9cba09ca update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 324
diff changeset
340 * @param loc_next the location of a @c next pointer within your node struct (required)
324
ce13a778654a update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 253
diff changeset
341 * @param insert_begin a pointer to the first node of the chain that shall be inserted
ce13a778654a update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 253
diff changeset
342 * @param cmp_func a compare function that will receive the node pointers
ce13a778654a update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 253
diff changeset
343 */
1040
473d8cb58a6c update ucx to version 4.0
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 1016
diff changeset
344 CX_EXTERN CX_NONNULL_ARG(1, 5, 6)
473d8cb58a6c update ucx to version 4.0
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 1016
diff changeset
345 void cx_linked_list_insert_sorted_chain(void **begin, void **end,
870
e167cf006213 update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 845
diff changeset
346 ptrdiff_t loc_prev, ptrdiff_t loc_next, void *insert_begin, cx_compare_func cmp_func);
174
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
347
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
348 /**
845
f3ab28ed22e5 update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 629
diff changeset
349 * Inserts a node into a sorted linked list if no other node with the same value already exists.
f3ab28ed22e5 update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 629
diff changeset
350 * The new node must not be part of any list yet.
f3ab28ed22e5 update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 629
diff changeset
351 *
f3ab28ed22e5 update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 629
diff changeset
352 * If the list starting with the node pointed to by @p begin is not sorted
f3ab28ed22e5 update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 629
diff changeset
353 * already, the behavior is undefined.
f3ab28ed22e5 update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 629
diff changeset
354 *
f3ab28ed22e5 update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 629
diff changeset
355 * @param begin a pointer to the beginning node pointer (required)
f3ab28ed22e5 update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 629
diff changeset
356 * @param end a pointer to the end node pointer (if your list has one)
f3ab28ed22e5 update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 629
diff changeset
357 * @param loc_prev the location of a @c prev pointer within your node struct (negative if your struct does not have one)
f3ab28ed22e5 update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 629
diff changeset
358 * @param loc_next the location of a @c next pointer within your node struct (required)
f3ab28ed22e5 update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 629
diff changeset
359 * @param new_node a pointer to the node that shall be inserted
f3ab28ed22e5 update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 629
diff changeset
360 * @param cmp_func a compare function that will receive the node pointers
f3ab28ed22e5 update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 629
diff changeset
361 * @retval zero when the node was inserted
f3ab28ed22e5 update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 629
diff changeset
362 * @retval non-zero when a node with the same value already exists
f3ab28ed22e5 update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 629
diff changeset
363 */
1040
473d8cb58a6c update ucx to version 4.0
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 1016
diff changeset
364 CX_EXTERN CX_NONNULL_ARG(1, 5, 6)
473d8cb58a6c update ucx to version 4.0
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 1016
diff changeset
365 int cx_linked_list_insert_unique(void **begin, void **end,
870
e167cf006213 update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 845
diff changeset
366 ptrdiff_t loc_prev, ptrdiff_t loc_next, void *new_node, cx_compare_func cmp_func);
845
f3ab28ed22e5 update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 629
diff changeset
367
f3ab28ed22e5 update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 629
diff changeset
368 /**
f3ab28ed22e5 update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 629
diff changeset
369 * Inserts a chain of nodes into a sorted linked list, avoiding duplicates.
f3ab28ed22e5 update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 629
diff changeset
370 * The chain must not be part of any list yet.
f3ab28ed22e5 update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 629
diff changeset
371 *
f3ab28ed22e5 update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 629
diff changeset
372 * If either the list starting with the node pointed to by @p begin or the list
f3ab28ed22e5 update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 629
diff changeset
373 * starting with @p insert_begin is not sorted, the behavior is undefined.
f3ab28ed22e5 update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 629
diff changeset
374 *
f3ab28ed22e5 update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 629
diff changeset
375 * @attention In contrast to cx_linked_list_insert_sorted(), not all nodes of the
f3ab28ed22e5 update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 629
diff changeset
376 * chain might be added. This function returns a new chain consisting of all the duplicates.
f3ab28ed22e5 update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 629
diff changeset
377 *
f3ab28ed22e5 update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 629
diff changeset
378 * @param begin a pointer to the beginning node pointer (required)
f3ab28ed22e5 update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 629
diff changeset
379 * @param end a pointer to the end node pointer (if your list has one)
f3ab28ed22e5 update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 629
diff changeset
380 * @param loc_prev the location of a @c prev pointer within your node struct (negative if your struct does not have one)
f3ab28ed22e5 update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 629
diff changeset
381 * @param loc_next the location of a @c next pointer within your node struct (required)
f3ab28ed22e5 update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 629
diff changeset
382 * @param insert_begin a pointer to the first node of the chain that shall be inserted
f3ab28ed22e5 update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 629
diff changeset
383 * @param cmp_func a compare function that will receive the node pointers
f3ab28ed22e5 update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 629
diff changeset
384 * @return a pointer to a new chain with all duplicates that were not inserted (or @c NULL when there were no duplicates)
f3ab28ed22e5 update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 629
diff changeset
385 */
1040
473d8cb58a6c update ucx to version 4.0
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 1016
diff changeset
386 CX_EXTERN CX_NONNULL_ARG(1, 5, 6) CX_NODISCARD
473d8cb58a6c update ucx to version 4.0
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 1016
diff changeset
387 void *cx_linked_list_insert_unique_chain(void **begin, void **end,
870
e167cf006213 update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 845
diff changeset
388 ptrdiff_t loc_prev, ptrdiff_t loc_next, void *insert_begin, cx_compare_func cmp_func);
845
f3ab28ed22e5 update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 629
diff changeset
389
f3ab28ed22e5 update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 629
diff changeset
390 /**
1040
473d8cb58a6c update ucx to version 4.0
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 1016
diff changeset
391 * Inserts a node into a sorted linked list.
473d8cb58a6c update ucx to version 4.0
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 1016
diff changeset
392 * The new node must not be part of any list yet.
473d8cb58a6c update ucx to version 4.0
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 1016
diff changeset
393 *
473d8cb58a6c update ucx to version 4.0
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 1016
diff changeset
394 * If the list starting with the node pointed to by @p begin is not sorted
473d8cb58a6c update ucx to version 4.0
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 1016
diff changeset
395 * already, the behavior is undefined.
473d8cb58a6c update ucx to version 4.0
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 1016
diff changeset
396 *
473d8cb58a6c update ucx to version 4.0
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 1016
diff changeset
397 * @param begin a pointer to the beginning node pointer (required)
473d8cb58a6c update ucx to version 4.0
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 1016
diff changeset
398 * @param end a pointer to the end node pointer (if your list has one)
473d8cb58a6c update ucx to version 4.0
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 1016
diff changeset
399 * @param loc_prev the location of a @c prev pointer within your node struct (negative if your struct does not have one)
473d8cb58a6c update ucx to version 4.0
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 1016
diff changeset
400 * @param loc_next the location of a @c next pointer within your node struct (required)
473d8cb58a6c update ucx to version 4.0
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 1016
diff changeset
401 * @param new_node a pointer to the node that shall be inserted
473d8cb58a6c update ucx to version 4.0
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 1016
diff changeset
402 * @param cmp_func a compare function that will receive the node pointers
473d8cb58a6c update ucx to version 4.0
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 1016
diff changeset
403 * @param context context for the compare function
473d8cb58a6c update ucx to version 4.0
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 1016
diff changeset
404 */
473d8cb58a6c update ucx to version 4.0
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 1016
diff changeset
405 CX_EXTERN CX_NONNULL_ARG(1, 5, 6)
473d8cb58a6c update ucx to version 4.0
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 1016
diff changeset
406 void cx_linked_list_insert_sorted_c(void **begin, void **end,
473d8cb58a6c update ucx to version 4.0
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 1016
diff changeset
407 ptrdiff_t loc_prev, ptrdiff_t loc_next, void *new_node, cx_compare_func2 cmp_func, void *context);
473d8cb58a6c update ucx to version 4.0
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 1016
diff changeset
408
473d8cb58a6c update ucx to version 4.0
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 1016
diff changeset
409 /**
473d8cb58a6c update ucx to version 4.0
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 1016
diff changeset
410 * Inserts a chain of nodes into a sorted linked list.
473d8cb58a6c update ucx to version 4.0
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 1016
diff changeset
411 * The chain must not be part of any list yet.
473d8cb58a6c update ucx to version 4.0
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 1016
diff changeset
412 *
473d8cb58a6c update ucx to version 4.0
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 1016
diff changeset
413 * If either the list starting with the node pointed to by @p begin or the list
473d8cb58a6c update ucx to version 4.0
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 1016
diff changeset
414 * starting with @p insert_begin is not sorted, the behavior is undefined.
473d8cb58a6c update ucx to version 4.0
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 1016
diff changeset
415 *
473d8cb58a6c update ucx to version 4.0
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 1016
diff changeset
416 * @attention In contrast to cx_linked_list_insert_chain(), the source chain
473d8cb58a6c update ucx to version 4.0
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 1016
diff changeset
417 * will be broken and inserted into the target list so that the resulting list
473d8cb58a6c update ucx to version 4.0
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 1016
diff changeset
418 * will be sorted according to @p cmp_func. That means each node in the source
473d8cb58a6c update ucx to version 4.0
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 1016
diff changeset
419 * chain may be re-linked with nodes from the target list.
473d8cb58a6c update ucx to version 4.0
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 1016
diff changeset
420 *
473d8cb58a6c update ucx to version 4.0
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 1016
diff changeset
421 * @param begin a pointer to the beginning node pointer (required)
473d8cb58a6c update ucx to version 4.0
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 1016
diff changeset
422 * @param end a pointer to the end node pointer (if your list has one)
473d8cb58a6c update ucx to version 4.0
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 1016
diff changeset
423 * @param loc_prev the location of a @c prev pointer within your node struct (negative if your struct does not have one)
473d8cb58a6c update ucx to version 4.0
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 1016
diff changeset
424 * @param loc_next the location of a @c next pointer within your node struct (required)
473d8cb58a6c update ucx to version 4.0
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 1016
diff changeset
425 * @param insert_begin a pointer to the first node of the chain that shall be inserted
473d8cb58a6c update ucx to version 4.0
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 1016
diff changeset
426 * @param cmp_func a compare function that will receive the node pointers
473d8cb58a6c update ucx to version 4.0
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 1016
diff changeset
427 * @param context context for the compare function
473d8cb58a6c update ucx to version 4.0
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 1016
diff changeset
428 */
473d8cb58a6c update ucx to version 4.0
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 1016
diff changeset
429 CX_EXTERN CX_NONNULL_ARG(1, 5, 6)
473d8cb58a6c update ucx to version 4.0
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 1016
diff changeset
430 void cx_linked_list_insert_sorted_chain_c(void **begin, void **end,
473d8cb58a6c update ucx to version 4.0
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 1016
diff changeset
431 ptrdiff_t loc_prev, ptrdiff_t loc_next, void *insert_begin, cx_compare_func2 cmp_func, void *context);
473d8cb58a6c update ucx to version 4.0
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 1016
diff changeset
432
473d8cb58a6c update ucx to version 4.0
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 1016
diff changeset
433 /**
473d8cb58a6c update ucx to version 4.0
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 1016
diff changeset
434 * Inserts a node into a sorted linked list if no other node with the same value already exists.
473d8cb58a6c update ucx to version 4.0
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 1016
diff changeset
435 * The new node must not be part of any list yet.
473d8cb58a6c update ucx to version 4.0
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 1016
diff changeset
436 *
473d8cb58a6c update ucx to version 4.0
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 1016
diff changeset
437 * If the list starting with the node pointed to by @p begin is not sorted
473d8cb58a6c update ucx to version 4.0
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 1016
diff changeset
438 * already, the behavior is undefined.
473d8cb58a6c update ucx to version 4.0
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 1016
diff changeset
439 *
473d8cb58a6c update ucx to version 4.0
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 1016
diff changeset
440 * @param begin a pointer to the beginning node pointer (required)
473d8cb58a6c update ucx to version 4.0
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 1016
diff changeset
441 * @param end a pointer to the end node pointer (if your list has one)
473d8cb58a6c update ucx to version 4.0
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 1016
diff changeset
442 * @param loc_prev the location of a @c prev pointer within your node struct (negative if your struct does not have one)
473d8cb58a6c update ucx to version 4.0
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 1016
diff changeset
443 * @param loc_next the location of a @c next pointer within your node struct (required)
473d8cb58a6c update ucx to version 4.0
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 1016
diff changeset
444 * @param new_node a pointer to the node that shall be inserted
473d8cb58a6c update ucx to version 4.0
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 1016
diff changeset
445 * @param cmp_func a compare function that will receive the node pointers
473d8cb58a6c update ucx to version 4.0
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 1016
diff changeset
446 * @param context the context for the compare function
473d8cb58a6c update ucx to version 4.0
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 1016
diff changeset
447 * @retval zero when the node was inserted
473d8cb58a6c update ucx to version 4.0
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 1016
diff changeset
448 * @retval non-zero when a node with the same value already exists
473d8cb58a6c update ucx to version 4.0
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 1016
diff changeset
449 */
473d8cb58a6c update ucx to version 4.0
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 1016
diff changeset
450 CX_EXTERN CX_NONNULL_ARG(1, 5, 6)
473d8cb58a6c update ucx to version 4.0
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 1016
diff changeset
451 int cx_linked_list_insert_unique_c(void **begin, void **end,
473d8cb58a6c update ucx to version 4.0
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 1016
diff changeset
452 ptrdiff_t loc_prev, ptrdiff_t loc_next, void *new_node, cx_compare_func2 cmp_func, void *context);
473d8cb58a6c update ucx to version 4.0
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 1016
diff changeset
453
473d8cb58a6c update ucx to version 4.0
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 1016
diff changeset
454 /**
473d8cb58a6c update ucx to version 4.0
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 1016
diff changeset
455 * Inserts a chain of nodes into a sorted linked list, avoiding duplicates.
473d8cb58a6c update ucx to version 4.0
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 1016
diff changeset
456 * The chain must not be part of any list yet.
473d8cb58a6c update ucx to version 4.0
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 1016
diff changeset
457 *
473d8cb58a6c update ucx to version 4.0
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 1016
diff changeset
458 * If either the list starting with the node pointed to by @p begin or the list
473d8cb58a6c update ucx to version 4.0
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 1016
diff changeset
459 * starting with @p insert_begin is not sorted, the behavior is undefined.
473d8cb58a6c update ucx to version 4.0
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 1016
diff changeset
460 *
473d8cb58a6c update ucx to version 4.0
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 1016
diff changeset
461 * @attention In contrast to cx_linked_list_insert_sorted(), not all nodes of the
473d8cb58a6c update ucx to version 4.0
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 1016
diff changeset
462 * chain might be added. This function returns a new chain consisting of all the duplicates.
473d8cb58a6c update ucx to version 4.0
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 1016
diff changeset
463 *
473d8cb58a6c update ucx to version 4.0
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 1016
diff changeset
464 * @param begin a pointer to the beginning node pointer (required)
473d8cb58a6c update ucx to version 4.0
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 1016
diff changeset
465 * @param end a pointer to the end node pointer (if your list has one)
473d8cb58a6c update ucx to version 4.0
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 1016
diff changeset
466 * @param loc_prev the location of a @c prev pointer within your node struct (negative if your struct does not have one)
473d8cb58a6c update ucx to version 4.0
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 1016
diff changeset
467 * @param loc_next the location of a @c next pointer within your node struct (required)
473d8cb58a6c update ucx to version 4.0
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 1016
diff changeset
468 * @param insert_begin a pointer to the first node of the chain that shall be inserted
473d8cb58a6c update ucx to version 4.0
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 1016
diff changeset
469 * @param cmp_func a compare function that will receive the node pointers
473d8cb58a6c update ucx to version 4.0
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 1016
diff changeset
470 * @param context context for the compare function
473d8cb58a6c update ucx to version 4.0
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 1016
diff changeset
471 * @return a pointer to a new chain with all duplicates that were not inserted (or @c NULL when there were no duplicates)
473d8cb58a6c update ucx to version 4.0
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 1016
diff changeset
472 */
473d8cb58a6c update ucx to version 4.0
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 1016
diff changeset
473 CX_EXTERN CX_NONNULL_ARG(1, 5, 6) CX_NODISCARD
473d8cb58a6c update ucx to version 4.0
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 1016
diff changeset
474 void *cx_linked_list_insert_unique_chain_c(void **begin, void **end,
473d8cb58a6c update ucx to version 4.0
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 1016
diff changeset
475 ptrdiff_t loc_prev, ptrdiff_t loc_next, void *insert_begin, cx_compare_func2 cmp_func, void *context);
473d8cb58a6c update ucx to version 4.0
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 1016
diff changeset
476
473d8cb58a6c update ucx to version 4.0
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 1016
diff changeset
477 /**
440
7c4b9cba09ca update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 324
diff changeset
478 * Removes a chain of nodes from the linked list.
174
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
479 *
845
f3ab28ed22e5 update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 629
diff changeset
480 * If one of the nodes to remove is the beginning (resp. end) node of the list, and if @p begin (resp. @p end)
174
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
481 * addresses are provided, the pointers are adjusted accordingly.
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
482 *
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
483 * The following combinations of arguments are valid (more arguments are optional):
440
7c4b9cba09ca update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 324
diff changeset
484 * @li @p loc_next and @p loc_prev (ancestor node is determined by using the prev pointer, overall O(1) performance)
7c4b9cba09ca update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 324
diff changeset
485 * @li @p loc_next and @p begin (ancestor node is determined by list traversal, overall O(n) performance)
7c4b9cba09ca update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 324
diff changeset
486 *
629
0385a450c2a6 add list initializer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 471
diff changeset
487 * @remark The @c next and @c prev pointers of the removed chain are not cleared by this function and may still be used
440
7c4b9cba09ca update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 324
diff changeset
488 * to traverse to a former adjacent node in the list, or within the chain.
174
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
489 *
440
7c4b9cba09ca update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 324
diff changeset
490 * @param begin a pointer to the beginning node pointer (optional)
7c4b9cba09ca update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 324
diff changeset
491 * @param end a pointer to the end node pointer (optional)
7c4b9cba09ca update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 324
diff changeset
492 * @param loc_prev the location of a @c prev pointer within your node struct (negative if your struct does not have one)
7c4b9cba09ca update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 324
diff changeset
493 * @param loc_next the location of a @c next pointer within your node struct (required)
7c4b9cba09ca update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 324
diff changeset
494 * @param node the start node of the chain
7c4b9cba09ca update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 324
diff changeset
495 * @param num the number of nodes to remove
7c4b9cba09ca update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 324
diff changeset
496 * @return the actual number of nodes that were removed (can be less when the list did not have enough nodes)
7c4b9cba09ca update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 324
diff changeset
497 */
1040
473d8cb58a6c update ucx to version 4.0
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 1016
diff changeset
498 CX_EXTERN CX_NONNULL_ARG(5)
473d8cb58a6c update ucx to version 4.0
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 1016
diff changeset
499 size_t cx_linked_list_remove_chain(void **begin, void **end,
870
e167cf006213 update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 845
diff changeset
500 ptrdiff_t loc_prev, ptrdiff_t loc_next, void *node, size_t num);
440
7c4b9cba09ca update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 324
diff changeset
501
7c4b9cba09ca update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 324
diff changeset
502 /**
7c4b9cba09ca update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 324
diff changeset
503 * Removes a node from the linked list.
7c4b9cba09ca update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 324
diff changeset
504 *
845
f3ab28ed22e5 update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 629
diff changeset
505 * If the node to remove is the beginning (resp. end) node of the list, and if @p begin (resp. @p end)
440
7c4b9cba09ca update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 324
diff changeset
506 * addresses are provided, the pointers are adjusted accordingly.
7c4b9cba09ca update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 324
diff changeset
507 *
7c4b9cba09ca update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 324
diff changeset
508 * The following combinations of arguments are valid (more arguments are optional):
7c4b9cba09ca update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 324
diff changeset
509 * @li @p loc_next and @p loc_prev (ancestor node is determined by using the prev pointer, overall O(1) performance)
7c4b9cba09ca update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 324
diff changeset
510 * @li @p loc_next and @p begin (ancestor node is determined by list traversal, overall O(n) performance)
7c4b9cba09ca update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 324
diff changeset
511 *
7c4b9cba09ca update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 324
diff changeset
512 * @remark The @c next and @c prev pointers of the removed node are not cleared by this function and may still be used
174
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
513 * to traverse to a former adjacent node in the list.
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
514 *
440
7c4b9cba09ca update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 324
diff changeset
515 * @param begin a pointer to the beginning node pointer (optional)
174
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
516 * @param end a pointer to the end node pointer (optional)
440
7c4b9cba09ca update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 324
diff changeset
517 * @param loc_prev the location of a @c prev pointer within your node struct (negative if your struct does not have one)
7c4b9cba09ca update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 324
diff changeset
518 * @param loc_next the location of a @c next pointer within your node struct (required)
174
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
519 * @param node the node to remove
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
520 */
1040
473d8cb58a6c update ucx to version 4.0
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 1016
diff changeset
521 CX_EXTERN CX_NONNULL_ARG(5)
473d8cb58a6c update ucx to version 4.0
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 1016
diff changeset
522 void cx_linked_list_remove(void **begin, void **end,
870
e167cf006213 update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 845
diff changeset
523 ptrdiff_t loc_prev, ptrdiff_t loc_next, void *node);
174
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
524
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
525 /**
440
7c4b9cba09ca update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 324
diff changeset
526 * Determines the size of a linked list starting with @p node.
7c4b9cba09ca update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 324
diff changeset
527 *
174
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
528 * @param node the first node
440
7c4b9cba09ca update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 324
diff changeset
529 * @param loc_next the location of the @c next pointer within the node struct
7c4b9cba09ca update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 324
diff changeset
530 * @return the size of the list or zero if @p node is @c NULL
174
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
531 */
1040
473d8cb58a6c update ucx to version 4.0
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 1016
diff changeset
532 CX_EXTERN CX_NODISCARD
473d8cb58a6c update ucx to version 4.0
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 1016
diff changeset
533 size_t cx_linked_list_size(const void *node, ptrdiff_t loc_next);
174
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
534
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
535 /**
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
536 * Sorts a linked list based on a comparison function.
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
537 *
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
538 * @note This is a recursive function with at most logarithmic recursion depth.
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
539 *
440
7c4b9cba09ca update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 324
diff changeset
540 * @param begin a pointer to the beginning node pointer (required)
174
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
541 * @param end a pointer to the end node pointer (optional)
440
7c4b9cba09ca update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 324
diff changeset
542 * @param loc_prev the location of a @c prev pointer within your node struct (negative if not present)
7c4b9cba09ca update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 324
diff changeset
543 * @param loc_next the location of a @c next pointer within your node struct (required)
7c4b9cba09ca update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 324
diff changeset
544 * @param loc_data the location of the @c data pointer within your node struct
174
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
545 * @param cmp_func the compare function defining the sort order
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
546 */
1040
473d8cb58a6c update ucx to version 4.0
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 1016
diff changeset
547 CX_EXTERN CX_NONNULL_ARG(1, 6)
473d8cb58a6c update ucx to version 4.0
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 1016
diff changeset
548 void cx_linked_list_sort(void **begin, void **end,
870
e167cf006213 update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 845
diff changeset
549 ptrdiff_t loc_prev, ptrdiff_t loc_next, ptrdiff_t loc_data, cx_compare_func cmp_func);
174
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
550
1016
ccde46662db7 update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 943
diff changeset
551 /**
ccde46662db7 update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 943
diff changeset
552 * Sorts a linked list based on a comparison function.
ccde46662db7 update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 943
diff changeset
553 *
ccde46662db7 update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 943
diff changeset
554 * @note This is a recursive function with at most logarithmic recursion depth.
ccde46662db7 update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 943
diff changeset
555 *
ccde46662db7 update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 943
diff changeset
556 * @param begin a pointer to the beginning node pointer (required)
ccde46662db7 update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 943
diff changeset
557 * @param end a pointer to the end node pointer (optional)
ccde46662db7 update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 943
diff changeset
558 * @param loc_prev the location of a @c prev pointer within your node struct (negative if not present)
ccde46662db7 update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 943
diff changeset
559 * @param loc_next the location of a @c next pointer within your node struct (required)
ccde46662db7 update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 943
diff changeset
560 * @param loc_data the location of the @c data pointer within your node struct
ccde46662db7 update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 943
diff changeset
561 * @param cmp_func the compare function defining the sort order
ccde46662db7 update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 943
diff changeset
562 * @param context additional context for the compare function
ccde46662db7 update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 943
diff changeset
563 */
1040
473d8cb58a6c update ucx to version 4.0
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 1016
diff changeset
564 CX_EXTERN CX_NONNULL_ARG(1, 6)
473d8cb58a6c update ucx to version 4.0
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 1016
diff changeset
565 void cx_linked_list_sort_c(void **begin, void **end,
1016
ccde46662db7 update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 943
diff changeset
566 ptrdiff_t loc_prev, ptrdiff_t loc_next, ptrdiff_t loc_data, cx_compare_func2 cmp_func, void *context);
ccde46662db7 update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 943
diff changeset
567
174
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
568 /**
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
569 * Compares two lists element wise.
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
570 *
845
f3ab28ed22e5 update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 629
diff changeset
571 * @attention Both lists must have the same structure.
174
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
572 *
440
7c4b9cba09ca update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 324
diff changeset
573 * @param begin_left the beginning of the left list (@c NULL denotes an empty list)
7c4b9cba09ca update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 324
diff changeset
574 * @param begin_right the beginning of the right list (@c NULL denotes an empty list)
174
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
575 * @param loc_advance the location of the pointer to advance
440
7c4b9cba09ca update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 324
diff changeset
576 * @param loc_data the location of the @c data pointer within your node struct
174
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
577 * @param cmp_func the function to compare the elements
440
7c4b9cba09ca update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 324
diff changeset
578 * @return the first non-zero result of invoking @p cmp_func or: negative if the left list is smaller than the
174
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
579 * right list, positive if the left list is larger than the right list, zero if both lists are equal.
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
580 */
1040
473d8cb58a6c update ucx to version 4.0
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 1016
diff changeset
581 CX_EXTERN CX_NONNULL_ARG(5)
473d8cb58a6c update ucx to version 4.0
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 1016
diff changeset
582 int cx_linked_list_compare(const void *begin_left, const void *begin_right,
870
e167cf006213 update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 845
diff changeset
583 ptrdiff_t loc_advance, ptrdiff_t loc_data, cx_compare_func cmp_func);
174
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
584
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
585 /**
1016
ccde46662db7 update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 943
diff changeset
586 * Compares two lists element wise.
ccde46662db7 update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 943
diff changeset
587 *
ccde46662db7 update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 943
diff changeset
588 * @attention Both lists must have the same structure.
ccde46662db7 update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 943
diff changeset
589 *
ccde46662db7 update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 943
diff changeset
590 * @param begin_left the beginning of the left list (@c NULL denotes an empty list)
ccde46662db7 update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 943
diff changeset
591 * @param begin_right the beginning of the right list (@c NULL denotes an empty list)
ccde46662db7 update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 943
diff changeset
592 * @param loc_advance the location of the pointer to advance
ccde46662db7 update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 943
diff changeset
593 * @param loc_data the location of the @c data pointer within your node struct
ccde46662db7 update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 943
diff changeset
594 * @param cmp_func the function to compare the elements
1040
473d8cb58a6c update ucx to version 4.0
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 1016
diff changeset
595 * @param context the context for the compare function
1016
ccde46662db7 update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 943
diff changeset
596 * @return the first non-zero result of invoking @p cmp_func or: negative if the left list is smaller than the
ccde46662db7 update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 943
diff changeset
597 * right list, positive if the left list is larger than the right list, zero if both lists are equal.
ccde46662db7 update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 943
diff changeset
598 */
1040
473d8cb58a6c update ucx to version 4.0
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 1016
diff changeset
599 CX_EXTERN CX_NONNULL_ARG(5)
473d8cb58a6c update ucx to version 4.0
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 1016
diff changeset
600 int cx_linked_list_compare_c(const void *begin_left, const void *begin_right,
1016
ccde46662db7 update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 943
diff changeset
601 ptrdiff_t loc_advance, ptrdiff_t loc_data, cx_compare_func2 cmp_func, void *context);
ccde46662db7 update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 943
diff changeset
602
ccde46662db7 update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 943
diff changeset
603 /**
174
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
604 * Reverses the order of the nodes in a linked list.
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
605 *
440
7c4b9cba09ca update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 324
diff changeset
606 * @param begin a pointer to the beginning node pointer (required)
174
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
607 * @param end a pointer to the end node pointer (optional)
440
7c4b9cba09ca update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 324
diff changeset
608 * @param loc_prev the location of a @c prev pointer within your node struct (negative if your struct does not have one)
7c4b9cba09ca update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 324
diff changeset
609 * @param loc_next the location of a @c next pointer within your node struct (required)
174
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
610 */
1040
473d8cb58a6c update ucx to version 4.0
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 1016
diff changeset
611 CX_EXTERN CX_NONNULL_ARG(1)
473d8cb58a6c update ucx to version 4.0
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 1016
diff changeset
612 void cx_linked_list_reverse(void **begin, void **end, ptrdiff_t loc_prev, ptrdiff_t loc_next);
174
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
613
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
614 #endif // UCX_LINKED_LIST_H

mercurial