aboutsummaryrefslogtreecommitdiff
path: root/c12/ex07/ft_list_at.c
blob: 3e4d7ca74ad4afc561147c9e278cc695445dd1c5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/* ************************************************************************** */
/*                                                                            */
/*                                                        :::      ::::::::   */
/*   ft_list_at.c                                       :+:      :+:    :+:   */
/*                                                    +:+ +:+         +:+     */
/*   By: cacharle <charles.cabergs@gmail.com>       +#+  +:+       +#+        */
/*                                                +#+#+#+#+#+   +#+           */
/*   Created: 2019/07/09 17:56:31 by cacharle          #+#    #+#             */
/*   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)
{
	while (nbr-- > 0 && begin_list != NULL)
		begin_list = begin_list->next;
	return (begin_list);
}