-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_lstiter_bonus.c
29 lines (25 loc) · 1.29 KB
/
ft_lstiter_bonus.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
25
26
27
28
29
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_lstiter_bonus.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: dolvin17 <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/04/03 21:32:48 by ghuertas #+# #+# */
/* Updated: 2022/04/22 01:22:24 by dolvin17 ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
/* itera lst y aplica 'f' al contenido de cada elemento */
void ft_lstiter(t_list *lst, void (*f)(void *))
{
t_list *pos;
if (!lst) //si el nodo no existe.
return ; //no hago nada.
pos = lst; //igualo pos a lst.
while (pos != NULL) // mientras el nodo sea distinto de null.
{
(*f)(pos->content); //aplico f al contenido de mi nodo
pos = pos->next; // apunto mi nodo actual al siguiente nodo.
}
}