Next: dll_insert_tail_node, Previous: dll_insert_node, Up: Doubly Linked Lists
Create and insert a node at the tail of a doubly linked list.
#include <linklist/linklist.h>int dll_insert_tail( DLinkList ull, void *data );
DLinkList ull
- a handle to the list into which to insert the node
void *data
- a pointer to the new node's data
This routine creates a node, inserts the passed data pointer in it, and attaches the node to the tail of the list.
It returns zero if the insert was successful, non-zero if it was unable to create the new node.