tgrekov-libft
HIVE libft Oct 2023
Loading...
Searching...
No Matches
s_list Struct Reference

Linked list node. More...

#include <libft.h>

Collaboration diagram for s_list:
[legend]

Data Fields

void * content
 void* to the node's contents.
 
struct s_listnext
 Pointer to the next node.
 

Detailed Description

Linked list node.

Definition at line 43 of file libft.h.

Field Documentation

◆ content

s_list::content

void* to the node's contents.

Definition at line 45 of file libft.h.

◆ next

s_list::next

Pointer to the next node.

NULL for the final node in the list.

Definition at line 46 of file libft.h.


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