aboutsummaryrefslogtreecommitdiff
path: root/c12/ex03
diff options
context:
space:
mode:
authorCabergs Charles <cacharle@e-r6-p7.s19.be>2019-07-24 08:02:55 +0200
committerCabergs Charles <cacharle@e-r6-p7.s19.be>2019-07-24 08:02:55 +0200
commite7acdc820fefa41ae00a7c776388e3d17250a2e9 (patch)
tree5604e51c0008088f25b2f5dfb9143a852dd079dd /c12/ex03
parent454d82f30e354e2629563822bac637e5eaa8e4ff (diff)
downloadpiscine-e7acdc820fefa41ae00a7c776388e3d17250a2e9.tar.gz
piscine-e7acdc820fefa41ae00a7c776388e3d17250a2e9.tar.bz2
piscine-e7acdc820fefa41ae00a7c776388e3d17250a2e9.zip
c12 passed, c13 start
Diffstat (limited to 'c12/ex03')
-rw-r--r--c12/ex03/ft_list.h4
-rw-r--r--c12/ex03/ft_list_last.c5
2 files changed, 6 insertions, 3 deletions
diff --git a/c12/ex03/ft_list.h b/c12/ex03/ft_list.h
index 32a5925..0167a74 100644
--- a/c12/ex03/ft_list.h
+++ b/c12/ex03/ft_list.h
@@ -6,12 +6,12 @@
/* By: cacharle <charles.cabergs@gmail.com> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2019/07/09 14:33:17 by cacharle #+# #+# */
-/* Updated: 2019/07/19 08:28:53 by cacharle ### ########.fr */
+/* Updated: 2019/07/23 15:17:26 by cacharle ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef FT_LIST_H
-#define FT_LIST_H
+# define FT_LIST_H
typedef struct s_list
{
diff --git a/c12/ex03/ft_list_last.c b/c12/ex03/ft_list_last.c
index 84a46c2..2164e34 100644
--- a/c12/ex03/ft_list_last.c
+++ b/c12/ex03/ft_list_last.c
@@ -6,14 +6,17 @@
/* By: cacharle <charles.cabergs@gmail.com> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2019/07/09 17:18:58 by cacharle #+# #+# */
-/* Updated: 2019/07/17 17:30:36 by cacharle ### ########.fr */
+/* Updated: 2019/07/23 15:37:03 by cacharle ### ########.fr */
/* */
/* ************************************************************************** */
+#include <stdlib.h>
#include "ft_list.h"
t_list *ft_list_last(t_list *begin_list)
{
+ if (begin_list == NULL)
+ return (NULL);
while (begin_list->next != NULL)
begin_list = begin_list->next;
return (begin_list);