data_structures
Data Fields
s_link Struct Reference

A link in a doubly-linked list. More...

#include <list.h>

Data Fields

void * content
 The content. More...
 
struct s_linknext
 The next link. More...
 
struct s_linkprev
 The previous link. More...
 

Detailed Description

A link in a doubly-linked list.

Definition at line 34 of file list.h.

Field Documentation

◆ content

s_link::content

The content.

Definition at line 36 of file list.h.

◆ next

s_link::next

The next link.

Definition at line 37 of file list.h.

◆ prev

s_link::prev

The previous link.

Definition at line 38 of file list.h.


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