Structs



ListNodeStruc

Abstract: Structure for a List Node
struct ListNodeStruc{
  void *item;
  struct ListNodeStruc *next;
};

Fields

NameDescription
itemPointer to List item. Should be malloc()ed externally to the list, as it is free()ed when list_destroy is called.
nextpointer to the next ListNode, or NULL if last node.

(Last Updated 4/21/2003)