You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
1016 B
20 lines
1016 B
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* ft_dlst_n.c :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: narnaud <narnaud@student.42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2022/03/24 10:51:20 by narnaud #+# #+# */
|
|
/* Updated: 2022/03/24 11:27:40 by narnaud ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#include "../libft.h"
|
|
|
|
t_dlist *ft_dlst_n(t_dlist *lst, size_t n)
|
|
{
|
|
while (n-- && lst)
|
|
lst = lst->next;
|
|
return (lst);
|
|
}
|
|
|