2 * This file is part of the libjaylink project.
4 * Copyright (C) 2014-2016 Marc Schink <jaylink-dev@marcschink.de>
6 * This program is free software: you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation, either version 2 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program. If not, see <http://www.gnu.org/licenses/>.
22 #include "libjaylink-internal.h"
27 * Singly-linked list functions.
31 JAYLINK_PRIV
struct list
*list_prepend(struct list
*list
, void *data
)
35 item
= malloc(sizeof(struct list
));
47 JAYLINK_PRIV
struct list
*list_remove(struct list
*list
, const void *data
)
57 if (item
->data
== data
) {
64 if (item
->next
->data
== data
) {
66 item
->next
= item
->next
->next
;
78 JAYLINK_PRIV
struct list
*list_find_custom(struct list
*list
,
79 list_compare_callback callback
, const void *user_data
)
85 if (callback(list
->data
, user_data
))
95 JAYLINK_PRIV
size_t list_length(struct list
*list
)
99 for (length
= 0; list
; length
++)
106 JAYLINK_PRIV
void list_free(struct list
*list
)