Next: , Previous: sll_next_node, Up: Singly Linked Lists


3.1.23 sll_node_get_data

Retrieve the data from a specified linked list node.

Synopsis

     #include <linklist/linklist.h>
     
     
     
void *sll_node_get_data(SLLNode unode);

Parameters

SLLNode unode
the node in question

Description

Retrieve the data from a specified linked list node.

Returns

It returns the node's data pointer.