Contiki-NG
Functions

Implementation of doubly-linked lists. More...

#include "contiki.h"
#include "lib/dbl-list.h"
#include <stdint.h>
#include <stdbool.h>
#include <string.h>

Go to the source code of this file.

Functions

void dbl_list_init (dbl_list_t dll)
 Initialise a doubly-linked list. More...
 
void * dbl_list_head (dbl_list_t dll)
 Return the tail of a doubly-linked list. More...
 
void * dbl_list_tail (dbl_list_t dll)
 Return the tail of a doubly-linked list. More...
 
void dbl_list_remove (dbl_list_t dll, void *element)
 Remove an element from a doubly-linked list. More...
 
void dbl_list_add_head (dbl_list_t dll, void *element)
 Add an element to the head of a doubly-linked list. More...
 
void dbl_list_add_tail (dbl_list_t dll, void *element)
 Add an element to the tail of a doubly-linked list. More...
 
void dbl_list_add_after (dbl_list_t dll, void *existing, void *element)
 Add an element to a doubly linked list after an existing element. More...
 
void dbl_list_add_before (dbl_list_t dll, void *existing, void *element)
 Add an element to a doubly linked list before an existing element. More...
 
unsigned long dbl_list_length (dbl_list_t dll)
 Get the length of a doubly-linked list. More...
 
bool dbl_list_is_empty (dbl_list_t dll)
 Determine whether a doubly-linked list is empty. More...
 

Detailed Description

Implementation of doubly-linked lists.

Definition in file dbl-list.c.