data_structures
|
#include "bst.h"
Go to the source code of this file.
Functions | |
void | bst_delete_node (t_bst *bst, t_bst_node *node) |
void | bst_delete_recur (t_bst *bst, t_bst_node *node) |
void | bst_delete (t_bst *bst) |
Deletes this tree and free all its items and the associated data. More... | |
void bst_delete | ( | t_bst * | bst | ) |
Deletes this tree and free all its items and the associated data.
Does nothing if the argument is NULL
.
Definition at line 34 of file bst_delete.c.