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

Definition at line 68 of file sllist.hxx.

References SLLItem::next.

Referenced by main().

69  {
70  SLLItem *ptr = head, *prev;
71  DISABLE_AST
72  while(ptr->next)
73  {
74  prev = ptr;
75  ptr = ptr->next;
76  if( itemptr == ptr )
77  {
78  prev->next = ptr->next;
79  }
80  }
81  ENABLE_AST
82  }
SLLItem * head
Definition: sllist.hxx:14
SLLItem * next
Definition: sllist.hxx:6

+ Here is the caller graph for this function: