#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; } void liftoff_list_swap(struct liftoff_list *this, struct liftoff_list *other) { struct liftoff_list tmp; liftoff_list_insert(other, &tmp); liftoff_list_remove(other); liftoff_list_insert(this, other); liftoff_list_remove(this); liftoff_list_insert(&tmp, this); liftoff_list_remove(&tmp); } 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; }