|
cLinkedList
A simple C library for doubly linked list creation and management
|
#include <include/cLinkedList.h>
Data Fields | |
| void * | obj |
| struct _cListElem * | nextElem |
| struct _cListElem * | prevElem |
Definition at line 22 of file cLinkedList.h.
| struct _cListElem* nextElem |
The element next to this element on the list.
Definition at line 26 of file cLinkedList.h.
| void* obj |
Data object pointed to the list element.
Definition at line 24 of file cLinkedList.h.
| struct _cListElem* prevElem |
The element before this element on the list.
Definition at line 28 of file cLinkedList.h.