1 /* Abstract sequential list data type, with out-of-memory checking.
2 Copyright (C) 2009-2020 Free Software Foundation, Inc.
3 Written by Bruno Haible <bruno@clisp.org>, 2009.
5 This program is free software: you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 3 of the License, or
8 (at your option) any later version.
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
15 You should have received a copy of the GNU General Public License
16 along with this program. If not, see <https://www.gnu.org/licenses/>. */
24 #ifndef _GL_INLINE_HEADER_BEGIN
25 #error "Please include config.h first."
27 _GL_INLINE_HEADER_BEGIN
28 #ifndef GL_XLIST_INLINE
29 # define GL_XLIST_INLINE _GL_INLINE
36 /* These functions are thin wrappers around the corresponding functions with
37 _nx_ infix from gl_list.h. Upon out-of-memory, they invoke xalloc_die (),
38 instead of returning an error indicator. */
39 #if 0 /* These are defined inline below. */
40 extern gl_list_t
gl_list_create_empty (gl_list_implementation_t implementation
,
41 gl_listelement_equals_fn equals_fn
,
42 gl_listelement_hashcode_fn hashcode_fn
,
43 gl_listelement_dispose_fn dispose_fn
,
44 bool allow_duplicates
);
45 extern gl_list_t
gl_list_create (gl_list_implementation_t implementation
,
46 gl_listelement_equals_fn equals_fn
,
47 gl_listelement_hashcode_fn hashcode_fn
,
48 gl_listelement_dispose_fn dispose_fn
,
49 bool allow_duplicates
,
50 size_t count
, const void **contents
);
51 extern void gl_list_node_set_value (gl_list_t list
, gl_list_node_t node
,
53 extern gl_list_node_t
gl_list_set_at (gl_list_t list
, size_t position
,
55 extern gl_list_node_t
gl_list_set_first (gl_list_t list
, const void *elt
);
56 extern gl_list_node_t
gl_list_set_last (gl_list_t list
, const void *elt
);
57 extern gl_list_node_t
gl_list_add_first (gl_list_t list
, const void *elt
);
58 extern gl_list_node_t
gl_list_add_last (gl_list_t list
, const void *elt
);
59 extern gl_list_node_t
gl_list_add_before (gl_list_t list
, gl_list_node_t node
,
61 extern gl_list_node_t
gl_list_add_after (gl_list_t list
, gl_list_node_t node
,
63 extern gl_list_node_t
gl_list_add_at (gl_list_t list
, size_t position
,
65 extern gl_list_node_t
gl_sortedlist_add (gl_list_t list
,
66 gl_listelement_compar_fn compar
,
70 GL_XLIST_INLINE gl_list_t
71 gl_list_create_empty (gl_list_implementation_t implementation
,
72 gl_listelement_equals_fn equals_fn
,
73 gl_listelement_hashcode_fn hashcode_fn
,
74 gl_listelement_dispose_fn dispose_fn
,
75 bool allow_duplicates
)
78 gl_list_nx_create_empty (implementation
, equals_fn
, hashcode_fn
, dispose_fn
,
85 GL_XLIST_INLINE gl_list_t
86 gl_list_create (gl_list_implementation_t implementation
,
87 gl_listelement_equals_fn equals_fn
,
88 gl_listelement_hashcode_fn hashcode_fn
,
89 gl_listelement_dispose_fn dispose_fn
,
90 bool allow_duplicates
,
91 size_t count
, const void **contents
)
94 gl_list_nx_create (implementation
, equals_fn
, hashcode_fn
, dispose_fn
,
95 allow_duplicates
, count
, contents
);
102 gl_list_node_set_value (gl_list_t list
, gl_list_node_t node
, const void *elt
)
104 int result
= gl_list_node_nx_set_value (list
, node
, elt
);
109 GL_XLIST_INLINE gl_list_node_t
110 gl_list_set_at (gl_list_t list
, size_t position
, const void *elt
)
112 gl_list_node_t result
= gl_list_nx_set_at (list
, position
, elt
);
118 GL_XLIST_INLINE gl_list_node_t
119 gl_list_set_first (gl_list_t list
, const void *elt
)
121 gl_list_node_t result
= gl_list_nx_set_first (list
, elt
);
127 GL_XLIST_INLINE gl_list_node_t
128 gl_list_set_last (gl_list_t list
, const void *elt
)
130 gl_list_node_t result
= gl_list_nx_set_last (list
, elt
);
136 GL_XLIST_INLINE gl_list_node_t
137 gl_list_add_first (gl_list_t list
, const void *elt
)
139 gl_list_node_t result
= gl_list_nx_add_first (list
, elt
);
145 GL_XLIST_INLINE gl_list_node_t
146 gl_list_add_last (gl_list_t list
, const void *elt
)
148 gl_list_node_t result
= gl_list_nx_add_last (list
, elt
);
154 GL_XLIST_INLINE gl_list_node_t
155 gl_list_add_before (gl_list_t list
, gl_list_node_t node
, const void *elt
)
157 gl_list_node_t result
= gl_list_nx_add_before (list
, node
, elt
);
163 GL_XLIST_INLINE gl_list_node_t
164 gl_list_add_after (gl_list_t list
, gl_list_node_t node
, const void *elt
)
166 gl_list_node_t result
= gl_list_nx_add_after (list
, node
, elt
);
172 GL_XLIST_INLINE gl_list_node_t
173 gl_list_add_at (gl_list_t list
, size_t position
, const void *elt
)
175 gl_list_node_t result
= gl_list_nx_add_at (list
, position
, elt
);
181 GL_XLIST_INLINE gl_list_node_t
182 gl_sortedlist_add (gl_list_t list
, gl_listelement_compar_fn compar
,
185 gl_list_node_t result
= gl_sortedlist_nx_add (list
, compar
, elt
);
195 _GL_INLINE_HEADER_END
197 #endif /* _GL_XLIST_H */