6 lines
162 B
Objective-C
6 lines
162 B
Objective-C
RCListElement *current;
|
|
for(current=first_of_the_list; current != nil; current = [current next] )
|
|
{
|
|
// to get the "datum":
|
|
// id dat_obj = [current datum];
|
|
}
|