1QB_LIST_INIT(3)            libqb Programmer's Manual           QB_LIST_INIT(3)
2
3
4

NAME

6       qb_list_init - Initialize the list entry.
7
8

SYNOPSIS

10       #include <qb/qblist.h>
11
12       static void qb_list_init(
13           struct qb_list_head   *head   /* pointer to the list head */
14       );
15

PARAMS

17       head pointer to the list head
18

DESCRIPTION

20       Points next and prev pointers to head.
21

STRUCTURES

23       struct qb_list_head {
24           struct   next;
25           struct   prev;
26       };
27

SEE ALSO

29       qb_list_empty(3), qb_list_add_tail(3), qb_list_add(3),
30       qb_list_splice_tail(3), qb_list_length(3), qb_list_replace(3),
31       qb_list_splice(3), qb_list_is_last(3), qb_list_del(3)
32
34       Copyright (C) 2010-2020 Red Hat, Inc.
35
36
37
38LIBQB                             2021-11-12                   QB_LIST_INIT(3)
Impressum