1 /* Abstract sequential list data type, with out-of-memory checking.
2 Copyright (C) 2009-2018 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_add_first (gl_list_t list
, const void *elt
);
56 extern gl_list_node_t
gl_list_add_last (gl_list_t list
, const void *elt
);
57 extern gl_list_node_t
gl_list_add_before (gl_list_t list
, gl_list_node_t node
,
59 extern gl_list_node_t
gl_list_add_after (gl_list_t list
, gl_list_node_t node
,
61 extern gl_list_node_t
gl_list_add_at (gl_list_t list
, size_t position
,
63 extern gl_list_node_t
gl_sortedlist_add (gl_list_t list
,
64 gl_listelement_compar_fn compar
,
68 GL_XLIST_INLINE gl_list_t
69 gl_list_create_empty (gl_list_implementation_t implementation
,
70 gl_listelement_equals_fn equals_fn
,
71 gl_listelement_hashcode_fn hashcode_fn
,
72 gl_listelement_dispose_fn dispose_fn
,
73 bool allow_duplicates
)
76 gl_list_nx_create_empty (implementation
, equals_fn
, hashcode_fn
, dispose_fn
,
83 GL_XLIST_INLINE gl_list_t
84 gl_list_create (gl_list_implementation_t implementation
,
85 gl_listelement_equals_fn equals_fn
,
86 gl_listelement_hashcode_fn hashcode_fn
,
87 gl_listelement_dispose_fn dispose_fn
,
88 bool allow_duplicates
,
89 size_t count
, const void **contents
)
92 gl_list_nx_create (implementation
, equals_fn
, hashcode_fn
, dispose_fn
,
93 allow_duplicates
, count
, contents
);
100 gl_list_node_set_value (gl_list_t list
, gl_list_node_t node
, const void *elt
)
102 int result
= gl_list_node_nx_set_value (list
, node
, elt
);
107 GL_XLIST_INLINE gl_list_node_t
108 gl_list_set_at (gl_list_t list
, size_t position
, const void *elt
)
110 gl_list_node_t result
= gl_list_nx_set_at (list
, position
, elt
);
116 GL_XLIST_INLINE gl_list_node_t
117 gl_list_add_first (gl_list_t list
, const void *elt
)
119 gl_list_node_t result
= gl_list_nx_add_first (list
, elt
);
125 GL_XLIST_INLINE gl_list_node_t
126 gl_list_add_last (gl_list_t list
, const void *elt
)
128 gl_list_node_t result
= gl_list_nx_add_last (list
, elt
);
134 GL_XLIST_INLINE gl_list_node_t
135 gl_list_add_before (gl_list_t list
, gl_list_node_t node
, const void *elt
)
137 gl_list_node_t result
= gl_list_nx_add_before (list
, node
, elt
);
143 GL_XLIST_INLINE gl_list_node_t
144 gl_list_add_after (gl_list_t list
, gl_list_node_t node
, const void *elt
)
146 gl_list_node_t result
= gl_list_nx_add_after (list
, node
, elt
);
152 GL_XLIST_INLINE gl_list_node_t
153 gl_list_add_at (gl_list_t list
, size_t position
, const void *elt
)
155 gl_list_node_t result
= gl_list_nx_add_at (list
, position
, elt
);
161 GL_XLIST_INLINE gl_list_node_t
162 gl_sortedlist_add (gl_list_t list
, gl_listelement_compar_fn compar
,
165 gl_list_node_t result
= gl_sortedlist_nx_add (list
, compar
, elt
);
175 _GL_INLINE_HEADER_END
177 #endif /* _GL_XLIST_H */