Libft
Custom implementation of core libc functions with additional utility helpers.
Loading...
Searching...
No Matches
s_node Struct Reference

Doubly linked list node structure. More...

#include <libft.h>

Collaboration diagram for s_node:

Data Fields

void * content
 Pointer to the node's content (owned by the node).
struct s_nodeprev
 Pointer to the previous node (borrowed, may be NULL).
struct s_nodenext
 Pointer to the next node (borrowed, may be NULL).

Detailed Description

Doubly linked list node structure.

Field Documentation

◆ content

void* s_node::content

Pointer to the node's content (owned by the node).

◆ next

struct s_node* s_node::next

Pointer to the next node (borrowed, may be NULL).

◆ prev

struct s_node* s_node::prev

Pointer to the previous node (borrowed, may be NULL).


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