libliftoff/list.c
Simon Ser caac9bc87f
Rename library to liftoff
Let's make these planes useful!
2019-09-12 11:40:21 +03:00

43 lines
728 B
C

#include "list.h"
void liftoff_list_init(struct liftoff_list *list)
{
list->prev = list;
list->next = list;
}
void liftoff_list_insert(struct liftoff_list *list, struct liftoff_list *elm)
{
elm->prev = list;
elm->next = list->next;
list->next = elm;
elm->next->prev = elm;
}
void liftoff_list_remove(struct liftoff_list *elm)
{
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)
{
struct liftoff_list *e;
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)
{
return list->next == list;
}