-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_lstrev.c
33 lines (28 loc) · 1.21 KB
/
ft_lstrev.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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_lstrev.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: mleonett <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2018/04/05 17:13:27 by mleonett #+# #+# */
/* Updated: 2018/04/05 17:34:28 by mleonett ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
static void swap(t_list **previous, t_list **current)
{
t_list *tmp;
tmp = (*current)->next;
(*current)->next = *previous;
*previous = *current;
*current = tmp;
}
void ft_lstrev(t_list **begin_list)
{
t_list *previous;
previous = NULL;
while (*begin_list)
swap(&previous, begin_list);
*begin_list = previous;
}