summaryrefslogtreecommitdiff
path: root/src/shared/list.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/shared/list.h')
-rw-r--r--src/shared/list.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/shared/list.h b/src/shared/list.h
index c020f7e93..f0458b54e 100644
--- a/src/shared/list.h
+++ b/src/shared/list.h
@@ -55,6 +55,14 @@
*_head = _item; \
} while(false)
+/* Append an item to the list */
+#define LIST_APPEND(name,head,item) \
+ do { \
+ typeof(*(head)) *_tail; \
+ LIST_FIND_TAIL(name,head,_tail); \
+ LIST_INSERT_AFTER(name,head,_tail,item); \
+ } while(false)
+
/* Remove an item from the list */
#define LIST_REMOVE(name,head,item) \
do { \