diff options
Diffstat (limited to 'c12/ex07')
| -rw-r--r-- | c12/ex07/ft_list.h | 4 | ||||
| -rw-r--r-- | c12/ex07/ft_list_at.c | 7 |
2 files changed, 6 insertions, 5 deletions
diff --git a/c12/ex07/ft_list.h b/c12/ex07/ft_list.h index ab7e2d1..3888011 100644 --- a/c12/ex07/ft_list.h +++ b/c12/ex07/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:24 by cacharle ### ########.fr */ +/* Updated: 2019/07/23 15:18:13 by cacharle ### ########.fr */ /* */ /* ************************************************************************** */ #ifndef FT_LIST_H -#define FT_LIST_H +# define FT_LIST_H typedef struct s_list { diff --git a/c12/ex07/ft_list_at.c b/c12/ex07/ft_list_at.c index ad4b084..3e4d7ca 100644 --- a/c12/ex07/ft_list_at.c +++ b/c12/ex07/ft_list_at.c @@ -6,15 +6,16 @@ /* By: cacharle <charles.cabergs@gmail.com> +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2019/07/09 17:56:31 by cacharle #+# #+# */ -/* Updated: 2019/07/17 18:36:07 by cacharle ### ########.fr */ +/* Updated: 2019/07/23 15:42:59 by cacharle ### ########.fr */ /* */ /* ************************************************************************** */ +#include <stdlib.h> #include "ft_list.h" -t_list *ft_list_at(t_list *begin_list, unsigned int nbr) +t_list *ft_list_at(t_list *begin_list, unsigned int nbr) { - while (nbr-- > 0 && begin_list) + while (nbr-- > 0 && begin_list != NULL) begin_list = begin_list->next; return (begin_list); } |
