23 lines
1.1 KiB
C
23 lines
1.1 KiB
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* ft_list_last.c :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: gtertysh <marvin@42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2016/11/08 20:12:36 by gtertysh #+# #+# */
|
|
/* Updated: 2016/11/08 20:44:33 by gtertysh ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#include "ft_list.h"
|
|
#include <stdlib.h>
|
|
|
|
t_list *ft_list_last(t_list *begin_list)
|
|
{
|
|
while (begin_list && begin_list->next)
|
|
{
|
|
begin_list = begin_list->next;
|
|
}
|
|
return (begin_list);
|
|
}
|