-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathget_next_line.h
30 lines (26 loc) · 1.15 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
28
29
30
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* get_next_line.h :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: ssalaues <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2016/12/23 16:32:36 by ssalaues #+# #+# */
/* Updated: 2017/03/01 22:20:39 by ssalaues ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef GET_NEXT_LINE_H
# define GET_NEXT_LINE_H
# define BUFF_SIZE 1000
# include "libft.h"
typedef struct s_gnl
{
char *data;
char t1[BUFF_SIZE + 1];
char *t2;
int fd;
int bs;
struct s_gnl *next;
} t_gnl;
int get_next_line(const int fd, char **line);
#endif