1QB_LIST_IS_LAST(3) libqb Programmer's Manual QB_LIST_IS_LAST(3)
2
3
4
6 qb_list_is_last - Tests whether list is the last entry in list head.
7
9 #include <qb/qblist.h>
10
11 static int qb_list_is_last(
12 const struct qb_list_head *list,
13 const struct qb_list_head *head
14 );
15
17 list the entry to test
18
19 head the head of the list
20
23 struct qb_list_head {
24 struct next;
25 struct prev;
26 };
27
29 boolean true/false
30
32 qb_list_empty(3), qb_list_add_tail(3), qb_list_add(3),
33 qb_list_splice_tail(3), qb_list_length(3), qb_list_replace(3),
34 qb_list_init(3), qb_list_splice(3), qb_list_del(3)
35
37 Copyright (C) 2010-2020 Red Hat, Inc. All rights reserved.
38
39
40
41LIBQB 2020-07-30 QB_LIST_IS_LAST(3)