-
Notifications
You must be signed in to change notification settings - Fork 0
/
get_next_line.h
30 lines (26 loc) · 1.17 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: imarakho <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2017/01/06 14:22:54 by imarakho #+# #+# */
/* Updated: 2017/02/26 17:46:49 by imarakho ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef GET_NEXT_LINE_H
# define GET_NEXT_LINE_H
# define BUFF_SIZE 128
# include <stdlib.h>
# include <fcntl.h>
# include <unistd.h>
# include "libft/libft.h"
int get_next_line(const int fd, char **line);
typedef struct s_chain
{
char *ln;
int fd;
struct s_chain *next;
} t_chain;
#endif