-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathft_lstiter.c
23 lines (21 loc) · 1.02 KB
/
ft_lstiter.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_lstiter.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: rlambert <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2014/11/07 15:59:54 by rlambert #+# #+# */
/* Updated: 2015/01/02 15:57:29 by rlambert ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
#include <stdlib.h>
void ft_lstiter(t_list *lst, void (*f)(t_list *))
{
while (lst != NULL)
{
f(lst);
lst = lst->next;
}
}