18#ifndef MBED_LINKED_LIST_H
19#define MBED_LINKED_LIST_H
22#include "LinkedListBase.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 enqueue(T *entry)
Add an element to the tail of the list.
T * dequeue()
Remove the element at the head of the list.
T * head()
Return the element at the head of the list.