Next: sll_tail_node, Previous: sll_sizeof_node, Up: Singly Linked Lists
Get the data of the tail node of a list.
#include <linklist/linklist.h>void *sll_tail(SLinkList ull);
SLinkList ull
- the list in question
Get the data of the tail node of a list.
It returns the data of the tail node of a list, NULL
if the list
is empty.