-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathft_lstiter_bonus.c
More file actions
executable file
·22 lines (20 loc) · 1 KB
/
Copy pathft_lstiter_bonus.c
File metadata and controls
executable file
·22 lines (20 loc) · 1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/* ************************************************************************** */
/* */
/* :::::::: */
/* ft_lstiter_bonus.c :+: :+: */
/* +:+ */
/* By: dkrecisz <dkrecisz@student.codam.nl> +#+ */
/* +#+ */
/* Created: 2019/11/13 13:25:07 by dkrecisz #+# #+# */
/* Updated: 2021/04/15 03:00:02 by dkrecisz ######## odam.nl */
/* */
/* ************************************************************************** */
#include "libft.h"
void ft_lstiter(t_list *lst, void (*f)(void *))
{
while (lst)
{
(*f)(lst->content);
lst = lst->next;
}
}