aboutsummaryrefslogtreecommitdiffstats
path: root/src/ft_lstiter.c
blob: 84fc000c13f94dee2f6f21d3107badc4328d6f56 (plain)
1
2
3
4
5
6
7
8
9
10
11
#include "libft.h"

void
ft_lstiter (t_list *lst, void (*f) (void *))
{
  while (lst)
    {
      f (lst->content);
      lst = lst->next;
    }
}