[go: up one dir, main page]

Menu

[1d9733]: / list.h  Maximize  Restore  History

Download this file

157 lines (134 with data), 4.5 kB

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
#if !defined(LIST_H)
#define LIST_H
/*
* Doubly-linked list macros
*/
/*
* Copyright 2006 Johan Veenhuizen
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
* to deal in the Software without restriction, including without limitation
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
* and/or sell copies of the Software, and to permit persons to whom the
* Software is furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included
* in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
* DEALINGS IN THE SOFTWARE.
*/
/*
* Doubly-linked list type
*
* Both lists and nodes of lists are of type LIST.
*
* Doubly-linked list macros
*
* LIST_DEFINE(listname)
* Define and initialize an empty list at load time.
*
* LIST_INIT([list | node])
* Initialize a list or node at run time.
*
* LIST_EMPTY(list)
* Test if list is empty.
*
* LIST_HEAD(list)
* Return the first element of list, or NULL if empty.
*
* LIST_TAIL(list)
* Return the last element of list, or NULL if empty.
*
* LIST_INSERT(list, node)
* Insert node somewhere in list (order not important).
*
* LIST_INSERT_HEAD(list, node)
* Insert node at the head of list.
*
* LIST_INSERT_TAIL(list, node)
* Insert node at the tail of list.
*
* LIST_INSERT_BEFORE(elem, node)
* Insert node before elem.
*
* LIST_INSERT_AFTER(elem, node)
* Insert node after elem.
*
* LIST_REMOVE(node)
* Remove node from its list.
*
* LIST_MEMBER(node)
* Test if node is a member of a list.
*
* LIST_ITEM(node, type, memb)
* Return the structure of the given type, containing
* node as member memb.
*
* LIST_FOREACH(node, list)
* Iterate over the nodes of list (for loop).
*
* LIST_FOREACH_REV(node, list)
* Iterate in reverse over the nodes of list (for loop).
*/
#include <stdio.h>
typedef struct listnode List;
/* The internal list type. Don't use this in code. */
struct listnode {
struct listnode *prev, *next;
};
/* Define and initialize an empty list at load time. */
#define LIST_DEFINE(name) List name = { &name, &name }
/* Initialize a list or list node at run time. */
#define LIST_INIT(lp) ((lp)->prev = (lp)->next = (lp))
/* Return the first node of list, or NULL if empty. */
#define LIST_HEAD(list) ((list)->next == (list) ? NULL : (list)->next)
/* Return the last node of list, or NULL if empty. */
#define LIST_TAIL(list) ((list)->prev == (list) ? NULL : (list)->prev)
/* Insert node before elem. */
#define LIST_INSERT_BEFORE(elem, node) do { \
(node)->next = (elem); \
(node)->prev = (elem)->prev; \
(elem)->prev->next = (node); \
(elem)->prev = (node); \
} while (0)
/* Insert node after elem. */
#define LIST_INSERT_AFTER(elem, node) do { \
(node)->prev = (elem); \
(node)->next = (elem)->next; \
(elem)->next->prev = (node); \
(elem)->next = (node); \
} while (0)
/* Insert node at the head of list. */
#define LIST_INSERT_HEAD(list, node) LIST_INSERT_AFTER((list), (node))
/* Insert node at the tail of list. */
#define LIST_INSERT_TAIL(list, node) LIST_INSERT_BEFORE((list), (node))
/* Use this when order is not important. */
#define LIST_INSERT(list, node) LIST_INSERT_TAIL((list), (node))
/* Delete node from its list. */
#define LIST_REMOVE(node) do { \
(node)->prev->next = (node)->next; \
(node)->next->prev = (node)->prev; \
LIST_INIT(node); \
} while (0)
/* Test if list if empty. */
#define LIST_EMPTY(list) ((list)->next == (list))
/* Test if node is a member of a list. */
#define LIST_MEMBER(node) ((node)->next != (node))
#define LIST_ITEM(node, type, memb) \
((type *)((char *)(node) - (size_t)&(((type *)0)->memb)))
#define LIST_FOREACH(node, list) \
for ((node) = (list)->next; \
(node) != (list); \
(node) = (node)->next)
#define LIST_FOREACH_REV(node, list) \
for ((node) = (list)->prev; \
(node) != (list); \
(node) = (node)->prev)
#endif /* defined(LIST_H) */