1#ifndef Cpl_Container_cslist_h_
2#define Cpl_Container_cslist_h_
This file provides the definitions for creating a data structures that can be contained in a linked l...
Type definition for a singly linked item.
Definition citem.h:71
void * Cpl_Container_SList_peekHead(const CplContainerSList_T *list)
Returns a pointer to the FIRST item in the list.
bool Cpl_Container_SList_remove(CplContainerSList_T *list, void *itemToRemove)
This function searches the list and - if found - removes the specified item from the list.
void * Cpl_Container_SList_peekTail(const CplContainerSList_T *list)
Return a pointer to the LAST item in the list.
void Cpl_Container_SList_clear(CplContainerSList_T *listToClear)
Empties the list.
void * Cpl_Container_SList_get(CplContainerSList_T *list)
Removes the FIRST item in the list.
bool Cpl_Container_SList_putFirst(CplContainerSList_T *list, void *item)
Adds the item as the FIRST item in the list.
CplContainerItemSListLinkage_T * headPtr
Pointer to the first item in the list.
Definition cslist.h:37
bool Cpl_Container_SList_put(CplContainerSList_T *list, void *item)
Adds the item as the LAST item in the list.
CplContainerItemSListLinkage_T * tailPtr
Pointer to the last item in the list.
Definition cslist.h:38
bool Cpl_Container_SList_isInList(const CplContainerSList_T *list, const void *item)
Returns 'true' if the instance is in the specified list.
void Cpl_Container_SList_initialize(CplContainerSList_T *listToInitialize)
Initializes the list.
void Cpl_Container_SList_move(CplContainerSList_T *dstList, CplContainerSList_T *srcList)
Moves the content of 'srcList' to the 'dstList'.
void * Cpl_Container_SList_getLast(CplContainerSList_T *list)
Removes the LAST item in the list.
void * Cpl_Container_SList_next(const void *item)
This function returns the next item in the list AFTER the specified item.
This structure define the internal structure of a Singly Linked List.
Definition cslist.h:36