list.c 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. /**
  2. @file list.c
  3. @brief ENet linked list functions
  4. */
  5. #define ENET_BUILDING_LIB 1
  6. #include "enet/list.h"
  7. /**
  8. @defgroup list ENet linked list utility functions
  9. @ingroup private
  10. @{
  11. */
  12. void
  13. enet_list_clear (ENetList * list)
  14. {
  15. list -> sentinel.next = & list -> sentinel;
  16. list -> sentinel.previous = & list -> sentinel;
  17. }
  18. ENetListIterator
  19. enet_list_insert (ENetListIterator position, void * data)
  20. {
  21. ENetListIterator result = (ENetListIterator) data;
  22. result -> previous = position -> previous;
  23. result -> next = position;
  24. result -> previous -> next = result;
  25. position -> previous = result;
  26. return result;
  27. }
  28. void *
  29. enet_list_remove (ENetListIterator position)
  30. {
  31. position -> previous -> next = position -> next;
  32. position -> next -> previous = position -> previous;
  33. return position;
  34. }
  35. size_t
  36. enet_list_size (ENetList * list)
  37. {
  38. size_t size = 0;
  39. ENetListIterator position;
  40. for (position = enet_list_begin (list);
  41. position != enet_list_end (list);
  42. position = enet_list_next (position))
  43. ++ size;
  44. return size;
  45. }
  46. /** @} */