Next: dll_destroy_node, Previous: dll_destroy_tail, Up: Doubly Linked Lists
Deallocate the memory associated with a detached node.
#include <linklist/linklist.h>void dll_destroy_dnode(DLLNode unode);
DLLNode unode
- the node to destroy
This routine deallocates the memory associated with a detached node.
The user must have already destroyed the data associated with the
node. The node handle must have been returned by
dll_detach_node
.