diff options
| author | Charles <sircharlesaze@gmail.com> | 2020-01-15 14:16:36 +0100 |
|---|---|---|
| committer | Charles <sircharlesaze@gmail.com> | 2020-01-15 14:16:36 +0100 |
| commit | e8a7d07f1c99b5ce6210603d88098580af95fb13 (patch) | |
| tree | cd442d7e351c20bcc6a6dc9f0b4619100750932a /include/libft.h | |
| parent | 496afe8e8a82d6db730bf835eb5fbe1ef3a142be (diff) | |
| download | libft-e8a7d07f1c99b5ce6210603d88098580af95fb13.tar.gz libft-e8a7d07f1c99b5ce6210603d88098580af95fb13.tar.bz2 libft-e8a7d07f1c99b5ce6210603d88098580af95fb13.zip | |
Fix strtol, Added list reverse functions
Diffstat (limited to 'include/libft.h')
| -rw-r--r-- | include/libft.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/include/libft.h b/include/libft.h index e81f262..a7f86af 100644 --- a/include/libft.h +++ b/include/libft.h @@ -6,7 +6,7 @@ /* By: cacharle <marvin@42.fr> +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2019/10/07 09:45:02 by cacharle #+# #+# */ -/* Updated: 2020/01/15 11:33:27 by cacharle ### ########.fr */ +/* Updated: 2020/01/15 12:52:37 by cacharle ### ########.fr */ /* */ /* ************************************************************************** */ @@ -95,6 +95,8 @@ void ft_lstiter(t_list *lst, void (*f)(void *)); t_list *ft_lstmap(t_list *lst, void *(*f)(void *), void (*del)(void *)); void ft_lstpop_front(t_list **lst, void (*del)(void *)); +t_list *ft_lstreverse_ret(t_list *lst); +void ft_lstreverse(t_list **lst); /* ** mem |
