libliftoff/list.c
Simon Ser 32683879e7 Add newline after function return type
Aligns our style with Linux' and Weston's.
2021-08-13 22:02:33 +02:00

48 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;
}