summaryrefslogtreecommitdiffstats
path: root/lib/lists.c
diff options
context:
space:
mode:
authorMartin Mares <mj@ucw.cz>1998-04-22 14:58:34 +0200
committerMartin Mares <mj@ucw.cz>1998-04-22 14:58:34 +0200
commit58ef912c6babf1866193ab04674a5866dd761f13 (patch)
tree244af1a4acb9feac08b45800587a06653a6ff264 /lib/lists.c
parentb60f7489148d021cb541414b8788f795ec4378fa (diff)
downloadbird-58ef912c6babf1866193ab04674a5866dd761f13.tar
bird-58ef912c6babf1866193ab04674a5866dd761f13.zip
First look at data structures. More to come tomorrow...
Diffstat (limited to 'lib/lists.c')
-rw-r--r--lib/lists.c76
1 files changed, 76 insertions, 0 deletions
diff --git a/lib/lists.c b/lib/lists.c
new file mode 100644
index 0000000..321a5f0
--- /dev/null
+++ b/lib/lists.c
@@ -0,0 +1,76 @@
+/*
+ * BIRD Library -- Linked Lists
+ *
+ * (c) 1998 Martin Mares <mj@ucw.cz>
+ *
+ * Can be freely distributed and used under the terms of the GNU GPL.
+ */
+
+#define _BIRD_LISTS_C_
+
+#include <nest/bird.h>
+#include <lib/lists.h>
+
+LIST_INLINE void
+add_tail(list *l, node *n)
+{
+ node *z = l->tail;
+
+ n->next = (node *) &l->tail;
+ n->prev = z;
+ z->next = n;
+ l->tail = n;
+}
+
+LIST_INLINE void
+add_head(list *l, node *n)
+{
+ node *z = l->head;
+
+ n->next = z;
+ n->prev = (node *) &l->head;
+ z->prev = n;
+ l->head = n;
+}
+
+LIST_INLINE void
+insert_node(node *n, node *after)
+{
+ node *z = after->next;
+
+ n->next = z;
+ n->prev = after;
+ after->next = n;
+ z->prev = n;
+}
+
+LIST_INLINE void
+rem_node(node *n)
+{
+ node *z = n->prev;
+ node *x = n->next;
+
+ z->next = x;
+ x->prev = z;
+}
+
+LIST_INLINE void
+init_list(list *l)
+{
+ l->head = (node *) &l->null;
+ l->null = NULL;
+ l->tail = (node *) &l->head;
+}
+
+LIST_INLINE void
+add_tail_list(list *to, list *l)
+{
+ node *p = to->tail;
+ node *q = l->head;
+
+ p->next = q;
+ q->prev = p;
+ q = l->tail;
+ q->next = (node *) &to->null;
+ to->tail = q;
+}