cLinkedList
A simple C library for doubly linked list creation and management
Loading...
Searching...
No Matches
_cListElem Struct Reference

#include <include/cLinkedList.h>

Data Fields

void * obj
 
struct _cListElemnextElem
 
struct _cListElemprevElem
 

Detailed Description

Definition at line 22 of file cLinkedList.h.

Field Documentation

◆ nextElem

struct _cListElem* nextElem

The element next to this element on the list.

Definition at line 26 of file cLinkedList.h.

◆ obj

void* obj

Data object pointed to the list element.

Definition at line 24 of file cLinkedList.h.

◆ prevElem

struct _cListElem* prevElem

The element before this element on the list.

Definition at line 28 of file cLinkedList.h.


The documentation for this struct was generated from the following file: