-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_lstiterif.c
24 lines (22 loc) · 1.11 KB
/
ft_lstiterif.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_lstiterif.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: mleonett <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2018/04/05 17:13:15 by mleonett #+# #+# */
/* Updated: 2018/04/05 17:21:16 by mleonett ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
void ft_lstiterif(t_list *begin_list, void (*f)(void *)
, void *data_ref, int (*cmp)())
{
while (begin_list)
{
if (cmp(begin_list->content, data_ref) == 0)
f(begin_list->content);
begin_list = begin_list->next;
}
}