aboutsummaryrefslogtreecommitdiff
path: root/c12/ex08/ft_list_reverse.c
diff options
context:
space:
mode:
Diffstat (limited to 'c12/ex08/ft_list_reverse.c')
-rw-r--r--c12/ex08/ft_list_reverse.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/c12/ex08/ft_list_reverse.c b/c12/ex08/ft_list_reverse.c
index e5c2057..a849c3a 100644
--- a/c12/ex08/ft_list_reverse.c
+++ b/c12/ex08/ft_list_reverse.c
@@ -6,11 +6,14 @@
/* By: cacharle <charles.cabergs@gmail.com> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2019/07/09 18:05:23 by cacharle #+# #+# */
-/* Updated: 2019/07/19 08:18:13 by cacharle ### ########.fr */
+/* Updated: 2019/07/23 15:42:03 by cacharle ### ########.fr */
/* */
/* ************************************************************************** */
-void ft_list_reverse(t_list **begin_list)
+#include <stdlib.h>
+#include "ft_list.h"
+
+void ft_list_reverse(t_list **begin_list)
{
t_list *cursor;
t_list *prev;