-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathget_next_line.h
27 lines (23 loc) · 1.12 KB
/
get_next_line.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* get_next_line.h :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: msoulaim <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2019/04/25 17:19:21 by msoulaim #+# #+# */
/* Updated: 2019/05/07 17:39:08 by msoulaim ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef GET_NEXT_LINE_H
# define GET_NEXT_LINE_H
# include "libft/libft.h"
# define BUFF_SIZE 100000
int get_next_line(const int fd, char **line);
typedef struct s_lstat
{
char *content;
int fd;
struct s_lstat *next;
} t_lstat;
#endif