-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_lstiter.c
30 lines (28 loc) · 1.11 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
24
25
26
27
28
29
30
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_lstiter.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: yuske <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2023/03/31 06:48:22 by yuske #+# #+# */
/* Updated: 2023/04/01 08:10:55 by yuske ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
/**
* @brief
*
* @param node
* @param fnc
*/
void ft_lstiter(t_list *node, void (*fnc)(void *))
{
if (fnc == NULL || node == NULL)
return ;
while (node != NULL)
{
fnc(node->content);
node = node->next;
}
}