FACT++  1.0
void SLList::add ( SLLItem itemptr)
inline

Definition at line 29 of file sllist.hxx.

References SLLItem::next.

Referenced by main().

30  {
31  DISABLE_AST
32  SLLItem *ptr = head;
33  while(ptr->next)
34  {
35  ptr = ptr->next;
36  }
37  ptr->next = itemptr;
38  ENABLE_AST
39  }
SLLItem * head
Definition: sllist.hxx:14
SLLItem * next
Definition: sllist.hxx:6

+ Here is the caller graph for this function: