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

Data Fields | |
| struct s_btree_node * | parent |
| Pointer to the parent node (borrowed, may be NULL). | |
| struct s_btree_node * | left |
| Pointer to the left child (borrowed, may be NULL). | |
| struct s_btree_node * | right |
| Pointer to the right child (borrowed, may be NULL). | |
| void * | data |
| Pointer to node payload (owned by the node, may be NULL). | |
Binary tree node structure.
| void* s_btree_node::data |
Pointer to node payload (owned by the node, may be NULL).
| struct s_btree_node* s_btree_node::left |
Pointer to the left child (borrowed, may be NULL).
| struct s_btree_node* s_btree_node::parent |
Pointer to the parent node (borrowed, may be NULL).
| struct s_btree_node* s_btree_node::right |
Pointer to the right child (borrowed, may be NULL).