13 lines
177 B
C
13 lines
177 B
C
#include "./lst.h"
|
|
|
|
void lst_iter(lst** root, void (*f)(void *))
|
|
{
|
|
lst *current = *root;
|
|
|
|
while (current != NULL)
|
|
{
|
|
(*f)(current->content);
|
|
current = current->next;
|
|
}
|
|
}
|