-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_lstat.c
executable file
·21 lines (19 loc) · 1.07 KB
/
ft_lstat.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/* ************************************************************************** */
/* LE - / */
/* / */
/* ft_lstat.c .:: .:/ . .:: */
/* +:+:+ +: +: +:+:+ */
/* By: brobicho <[email protected]> +:+ +: +: +:+ */
/* #+# #+ #+ #+# */
/* Created: 2018/04/10 03:50:03 by brobicho #+# ## ## #+# */
/* Updated: 2018/07/25 15:52:54 by brobicho ### #+. /#+ ###.fr */
/* / */
/* / */
/* ************************************************************************** */
#include "libft.h"
t_list *ft_lstat(t_list *lst, size_t index)
{
while (lst && index--)
lst = lst->next;
return (lst);
}