Next: rbtree_destroy_node, Previous: rbtree_destroy, Up: Public Routines
Deallocate the memory associated with a detached node.
#include <rbtree/rbtree.h>void rbtree_destroy_dnode(RBNode rbnode);
RBNode rbnode
- the handle of the detached node to destroy
This routine deallocates the memory associated with a detached
red-black tree node. The user must have already destroyed the data
associated with the node. The node handle must have been returned
by rbtree_detach_node
.