summaryrefslogtreecommitdiff
path: root/libs/enet/list.c
diff options
context:
space:
mode:
authorBernd Wachter <bwachter-tmw@lart.info>2010-08-13 19:14:33 +0300
committerBernd Wachter <bwachter-mana@lart.info>2010-08-15 00:34:50 +0300
commit3a6ff85e8f03960fc0709ed1cb203a44b8c4d6b5 (patch)
treed23df8e53f5868e450e98fdc266b1c8a36f1a386 /libs/enet/list.c
parentab0933b5a4c6cd3ca9f6b13bd011c7e0bf4e546e (diff)
downloadmanaserv-3a6ff85e8f03960fc0709ed1cb203a44b8c4d6b5.tar.gz
manaserv-3a6ff85e8f03960fc0709ed1cb203a44b8c4d6b5.tar.bz2
manaserv-3a6ff85e8f03960fc0709ed1cb203a44b8c4d6b5.tar.xz
manaserv-3a6ff85e8f03960fc0709ed1cb203a44b8c4d6b5.zip
Add enet files
Diffstat (limited to 'libs/enet/list.c')
-rw-r--r--libs/enet/list.c75
1 files changed, 75 insertions, 0 deletions
diff --git a/libs/enet/list.c b/libs/enet/list.c
new file mode 100644
index 00000000..8487200f
--- /dev/null
+++ b/libs/enet/list.c
@@ -0,0 +1,75 @@
+/**
+ @file list.c
+ @brief ENet linked list functions
+*/
+#define ENET_BUILDING_LIB 1
+#include "enet/list.h"
+
+/**
+ @defgroup list ENet linked list utility functions
+ @ingroup private
+ @{
+*/
+void
+enet_list_clear (ENetList * list)
+{
+ list -> sentinel.next = & list -> sentinel;
+ list -> sentinel.previous = & list -> sentinel;
+}
+
+ENetListIterator
+enet_list_insert (ENetListIterator position, void * data)
+{
+ ENetListIterator result = (ENetListIterator) data;
+
+ result -> previous = position -> previous;
+ result -> next = position;
+
+ result -> previous -> next = result;
+ position -> previous = result;
+
+ return result;
+}
+
+void *
+enet_list_remove (ENetListIterator position)
+{
+ position -> previous -> next = position -> next;
+ position -> next -> previous = position -> previous;
+
+ return position;
+}
+
+ENetListIterator
+enet_list_move (ENetListIterator position, void * dataFirst, void * dataLast)
+{
+ ENetListIterator first = (ENetListIterator) dataFirst,
+ last = (ENetListIterator) dataLast;
+
+ first -> previous -> next = last -> next;
+ last -> next -> previous = first -> previous;
+
+ first -> previous = position -> previous;
+ last -> next = position;
+
+ first -> previous -> next = first;
+ position -> previous = last;
+
+ return first;
+}
+
+size_t
+enet_list_size (ENetList * list)
+{
+ size_t size = 0;
+ ENetListIterator position;
+
+ for (position = enet_list_begin (list);
+ position != enet_list_end (list);
+ position = enet_list_next (position))
+ ++ size;
+
+ return size;
+}
+
+/** @} */