18#ifndef MBED_LINKED_LIST_BASE_H
19#define MBED_LINKED_LIST_BASE_H
LinkEntry * head()
Return the element at the head of the list.
LinkEntry * dequeue()
Remove the element at the head of the list.
void enqueue(LinkEntry *entry)
Add an element to the tail of the list.
void remove(LinkEntry *entry)
Remove the specified element if it is in the list.