Next: sll_node_get_data, Previous: sll_next, Up: Singly Linked Lists
Get a handle to the node following a given node in a list.
#include <linklist/linklist.h>SLLNode sll_next_node( SLinkList ull, SLLNode unode );
SLinkList ull
- the list which contains the node
SLLNode 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.