C Everything
This is a C repository containing a curated set of generic data structures and algorithm.
llnode Struct Reference

Link list node definition. More...

#include <link_list.h>

Data Fields

t_gen data
 Pointer to the data to be stored in link list. More...
 
struct llnodenxt
 Pointer to next node in list. More...
 
struct llnodeprv
 Pointer to prev node in list. More...
 

Detailed Description

Link list node definition.

Definition at line 19 of file link_list.h.

Field Documentation

◆ data

t_gen data

Pointer to the data to be stored in link list.

Definition at line 20 of file link_list.h.

◆ nxt

struct llnode* nxt

Pointer to next node in list.

Definition at line 21 of file link_list.h.

◆ prv

struct llnode* prv

Pointer to prev node in list.

Definition at line 22 of file link_list.h.


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