1 /* Sequential list data type implemented by a linked list.
2 Copyright (C) 2006, 2008-2018 Free Software Foundation, Inc.
3 Written by Bruno Haible <bruno@clisp.org>, 2006.
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/>. */
21 #include "gl_linked_list.h"
25 /* -------------------------- gl_list_t Data Type -------------------------- */
27 /* Generic linked list code. */
28 #include "gl_anylinked_list1.h"
29 #include "gl_anylinked_list2.h"
32 const struct gl_list_implementation gl_linked_list_implementation
=
34 gl_linked_nx_create_empty
,
38 gl_linked_node_nx_set_value
,
40 gl_linked_previous_node
,
43 gl_linked_search_from_to
,
44 gl_linked_indexof_from_to
,
45 gl_linked_nx_add_first
,
46 gl_linked_nx_add_last
,
47 gl_linked_nx_add_before
,
48 gl_linked_nx_add_after
,
50 gl_linked_remove_node
,
55 gl_linked_iterator_from_to
,
56 gl_linked_iterator_next
,
57 gl_linked_iterator_free
,
58 gl_linked_sortedlist_search
,
59 gl_linked_sortedlist_search_from_to
,
60 gl_linked_sortedlist_indexof
,
61 gl_linked_sortedlist_indexof_from_to
,
62 gl_linked_sortedlist_nx_add
,
63 gl_linked_sortedlist_remove