|
Libft
Custom implementation of core libc functions with additional utility helpers.
|
Doubly linked list node structure. More...
#include <libft.h>

Data Fields | |
| void * | content |
| Pointer to the node's content (owned by the node). | |
| struct s_node * | prev |
| Pointer to the previous node (borrowed, may be NULL). | |
| struct s_node * | next |
| Pointer to the next node (borrowed, may be NULL). | |
Doubly linked list node structure.
| void* s_node::content |
Pointer to the node's content (owned by the node).
| struct s_node* s_node::next |
Pointer to the next node (borrowed, may be NULL).
| struct s_node* s_node::prev |
Pointer to the previous node (borrowed, may be NULL).