-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_lstmap.c
31 lines (28 loc) · 1.22 KB
/
ft_lstmap.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
31
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_lstmap.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: rishimot <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2020/07/14 02:35:25 by rishimot #+# #+# */
/* Updated: 2020/07/14 20:01:32 by rishimot ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
t_list *ft_lstmap(t_list *lst, void *(*f)(void *), void (*del)(void *))
{
t_list *nmap;
t_list *nlst;
if (!lst || !f)
return (0);
nmap = NULL;
while (lst)
{
if (!(nlst = ft_lstnew(f(lst->content))))
ft_lstclear(&nmap, del);
ft_lstadd_back(&nmap, nlst);
lst = lst->next;
}
return (nmap);
}