-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_lstmap_bonus.c
58 lines (55 loc) · 4.3 KB
/
ft_lstmap_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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_lstmap_bonus.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: ahabachi <ahabachi@student.1337.ma> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/10/06 18:56:12 by ahabachi #+# #+# */
/* Updated: 2022/10/06 18:56:13 by ahabachi ### ########.fr */
/* */
/* ************************************************************************** */
/* */
/* ▄ ▄▄▄▄▄▄▄▄▄▄▄ ▄▄▄▄▄▄▄▄▄▄ ▄▄▄▄▄▄▄▄▄▄▄ ▄▄▄▄▄▄▄▄▄▄▄ */
/* ▐░▌ ▐░░░░░░░░░░░▌▐░░░░░░░░░░▌ ▐░░░░░░░░░░░▌▐░░░░░░░░░░░▌ */
/* ▐░▌ ▀▀▀▀█░█▀▀▀▀ ▐░█▀▀▀▀▀▀▀█░▌▐░█▀▀▀▀▀▀▀▀▀ ▀▀▀▀█░█▀▀▀▀ */
/* ▐░▌ ▐░▌ ▐░▌ ▐░▌▐░▌ ▐░▌ */
/* ▐░▌ ▐░▌ ▐░█▄▄▄▄▄▄▄█░▌▐░█▄▄▄▄▄▄▄▄▄ ▐░▌ */
/* ▐░▌ ▐░▌ ▐░░░░░░░░░░▌ ▐░░░░░░░░░░░▌ ▐░▌ */
/* ▐░▌ ▐░▌ ▐░█▀▀▀▀▀▀▀█░▌▐░█▀▀▀▀▀▀▀▀▀ ▐░▌ */
/* ▐░▌ ▐░▌ ▐░▌ ▐░▌▐░▌ ▐░▌ */
/* ▐░█▄▄▄▄▄▄▄▄▄ ▄▄▄▄█░█▄▄▄▄ ▐░█▄▄▄▄▄▄▄█░▌▐░▌ ▐░▌ */
/* ▐░░░░░░░░░░░▌▐░░░░░░░░░░░▌▐░░░░░░░░░░▌ ▐░▌ ▐░▌ */
/* ▀▀▀▀▀▀▀▀▀▀▀ ▀▀▀▀▀▀▀▀▀▀▀ ▀▀▀▀▀▀▀▀▀▀ ▀ ▀ */
/* */
/* ************************************************************************** */
/* █████████ ██████████ ██████████ ██████████ */
/* ██ ██ ██ ██ ██ ██ */
/* ██ ██ ██ ██ ██ */
/* ██ ██ ██ ██ */
/* ██ ██████████ ██████████ ██ */
/* ██ ██ ██ ██ */
/* ██ ██ ██ ██ */
/* ██ ██ ██ ██ */
/* ████████ ██████████ ██████████ ██ */
/* */
/* ************************************************************************** */
#include "libft.h"
t_list *ft_lstmap(t_list *lst, void *(*f)(void *), void (*del)(void *))
{
t_list *first;
t_list *last;
if (!lst || !f)
return (0);
first = ft_lstnew(f(lst->content));
last = first;
while (last && lst->next)
{
lst = lst->next;
last->next = ft_lstnew(f(lst->content));
last = last->next;
}
if (!last)
ft_lstclear(&first, del);
return (first);
}