-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathft_lstiter_bonus.c
More file actions
27 lines (24 loc) · 1.04 KB
/
Copy pathft_lstiter_bonus.c
File metadata and controls
27 lines (24 loc) · 1.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_lstiter_bonus.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: mait-elk <mait-elk@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2023/11/06 15:29:44 by mait-elk #+# #+# */
/* Updated: 2023/11/13 16:11:52 by mait-elk ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
void ft_lstiter(t_list *lst, void (*f)(void *))
{
t_list *i;
if (!lst || !f)
return ;
i = lst;
while (i)
{
f(i->content);
i = i->next;
}
}