Next: dll_node_get_data, Previous: dll_next, Up: Doubly Linked Lists
Get a handle to the node following a given node in a list.
#include <linklist/linklist.h>DLLNode dll_next_node( DLinkList ull, DLLNode unode );
DLinkList ull
- the list which contains the node
DLLNode unode
- the preceding node
Get a handle to the node following a given node in a list.
It returns NULL
if there are no more nodes, else a handle to the
node.