FACT++
1.0
Main Page
Related Pages
Namespaces
Classes
Files
Examples
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
}
SLList::head
SLLItem * head
Definition:
sllist.hxx:14
SLLItem
Definition:
sllist.hxx:4
SLLItem::next
SLLItem * next
Definition:
sllist.hxx:6
Here is the caller graph for this function:
SLList
Generated on Sun Sep 18 2016 20:50:58 for FACT++ by
1.8.11