1#ifndef Cpl_Container_cdlist_h_
2#define Cpl_Container_cdlist_h_
void Cpl_Container_DList_move(CplContainerDList_T *dstList, CplContainerDList_T *srcList)
Moves the content of 'srcList' to the 'dstList'.
bool Cpl_Container_DList_insertAfter(CplContainerDList_T *list, void *afterItem, void *newItem)
Insert the 'newItem' into the list behind the 'afterItem' element.
void * Cpl_Container_DList_next(const void *item)
This function returns the next item in the list AFTER the specified item.
void * Cpl_Container_DList_peekHead(const CplContainerDList_T *list)
Return a pointer to the FIRST item in the list.
void * Cpl_Container_DList_prev(const void *item)
This function returns the previous item in the list BEFORE the specified item.
CplContainerItemDListLinkage_T * tailPtr
Pointer to the last item in the list.
Definition cdlist.h:39
void * Cpl_Container_DList_getLast(CplContainerDList_T *list)
Removes the LAST item in the list.
void Cpl_Container_DList_clear(CplContainerDList_T *listToClear)
Empties the list.
void Cpl_Container_DList_initialize(CplContainerDList_T *listToInitialize)
Initializes the list.
void * Cpl_Container_DList_get(CplContainerDList_T *list)
Removes the FIRST item in the list.
bool Cpl_Container_DList_put(CplContainerDList_T *list, void *item)
Adds the item as the LAST item in the list.
CplContainerItemDListLinkage_T * headPtr
Pointer to the first item in the list.
Definition cdlist.h:38
bool Cpl_Container_DList_insertBefore(CplContainerDList_T *list, void *beforeItem, void *newItem)
Insert the 'newItem' into the list ahead of the 'beforeItem' element.
bool Cpl_Container_DList_remove(CplContainerDList_T *list, void *itemToRemove)
This function searches the list and - if found - removes the specified item from the list.
bool Cpl_Container_DList_isInList(const CplContainerDList_T *list, const void *item)
Returns 'true' if the instance is in the specified list.
void * Cpl_Container_DList_peekTail(const CplContainerDList_T *list)
Return a pointer to the LAST item in the list.
bool Cpl_Container_DList_putFirst(CplContainerDList_T *list, void *item)
Adds the item as the FIRST item in the list.
This structure define the internal structure of a Doubly Linked List.
Definition cdlist.h:37
This file provides the definitions for creating a data structures that can be contained in a linked l...
Type definition for a Doubly linked item.
Definition citem.h:84