struct ListNodeStruc{ void *item; struct ListNodeStruc *next; };
Name Description item Pointer to List item. Should be malloc()ed externally to the list, as it is free()ed when list_destroy is called. next pointer to the next ListNode, or NULL if last node.
(Last Updated 4/21/2003)