FACT++  1.0
DLLItem* DLList::getHead ( )
inline

Definition at line 44 of file dllist.hxx.

References DLLItem::next.

45  {
46  DISABLE_AST
47  if(head->next == head)
48  {
49  ENABLE_AST
50  return((DLLItem *)0);
51  }
52  curr = head->next;
53  ENABLE_AST
54  return( head->next );
55  }
DLLItem * next
Definition: dllist.hxx:6
DLLItem * head
Definition: dllist.hxx:16
DLLItem * curr
Definition: dllist.hxx:17