doc
Data Fields
c_list_s Struct Reference

#include <src/std/c_list.h>

Data Fields

void * data
 
struct c_list_snext
 
struct c_list_sprev
 

Detailed Description

Used for each element in a doubly-linked list.

The list can hold any kind of data.

Definition at line 54 of file c_list.h.

Field Documentation

◆ data

void* c_list_s::data

Holds the element's data, which can be a pointer to any kind of data.

Definition at line 64 of file c_list.h.

◆ next

struct c_list_s* c_list_s::next

Link to the next element in the list.

Definition at line 56 of file c_list.h.

◆ prev

struct c_list_s* c_list_s::prev

Link to the previous element in the list.

Definition at line 58 of file c_list.h.


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