libliftoff/list.c

44 lines
728 B
C
Raw Normal View History

2019-08-21 22:07:37 +02:00
#include "list.h"
void liftoff_list_init(struct liftoff_list *list)
2019-08-21 22:07:37 +02:00
{
list->prev = list;
list->next = list;
}
void liftoff_list_insert(struct liftoff_list *list, struct liftoff_list *elm)
2019-08-21 22:07:37 +02:00
{
elm->prev = list;
elm->next = list->next;
list->next = elm;
elm->next->prev = elm;
}
void liftoff_list_remove(struct liftoff_list *elm)
2019-08-21 22:07:37 +02:00
{
elm->prev->next = elm->next;
elm->next->prev = elm->prev;
elm->next = NULL;
elm->prev = NULL;
}
size_t liftoff_list_length(const struct liftoff_list *list)
2019-08-21 22:07:37 +02:00
{
struct liftoff_list *e;
2019-08-21 22:07:37 +02:00
size_t count;
count = 0;
e = list->next;
while (e != list) {
e = e->next;
count++;
}
return count;
}
bool liftoff_list_empty(const struct liftoff_list *list)
2019-08-21 22:07:37 +02:00
{
return list->next == list;
}