blob: 61c9daf95fc16845b2acd635b34d3e07867281ff (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_lstreverse.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: cacharle <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2020/01/15 12:49:14 by cacharle #+# #+# */
/* Updated: 2020/02/15 22:53:23 by cacharle ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
#include "libft_lst.h"
void ft_lstreverse(t_ftlst **lst)
{
*lst = ft_lstreverse_ret(*lst);
}
|