diff options
| author | Rémi Verschelde | 2016-10-10 19:50:51 +0200 |
|---|---|---|
| committer | Rémi Verschelde | 2016-10-15 11:50:39 +0200 |
| commit | c31ad71f10f68705a456b4257c084d4008c34370 (patch) | |
| tree | 661ac3c986d69876eda544a8292949e924e819ad /thirdparty/enet/list.c | |
| parent | 16ba665db6bbd7f15aadc35fda87d69d0b220bf7 (diff) | |
| download | godot-c31ad71f10f68705a456b4257c084d4008c34370.tar.gz godot-c31ad71f10f68705a456b4257c084d4008c34370.tar.zst godot-c31ad71f10f68705a456b4257c084d4008c34370.zip | |
enet: Split enet thirdparty files and allow unbundling
Building against shared libraries only implemented for Linux X11 so far.
TODO: Document Godot's modifications of upstream enet.
Diffstat (limited to 'thirdparty/enet/list.c')
| -rw-r--r-- | thirdparty/enet/list.c | 75 |
1 files changed, 75 insertions, 0 deletions
diff --git a/thirdparty/enet/list.c b/thirdparty/enet/list.c new file mode 100644 index 000000000..1c1a8dfaa --- /dev/null +++ b/thirdparty/enet/list.c @@ -0,0 +1,75 @@ +/** + @file list.c + @brief ENet linked list functions +*/ +#define ENET_BUILDING_LIB 1 +#include "enet/enet.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; +} + +/** @} */ |
