-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathget_next_line.h
26 lines (21 loc) · 1.1 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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* get_next_line.h :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: mcaseaux <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2017/11/27 14:15:49 by mcaseaux #+# #+# */
/* Updated: 2018/03/07 14:50:44 by mcaseaux ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef GET_NEXT_LINE_H
# define GET_NEXT_LINE_H
# include <stdlib.h>
# include <unistd.h>
# include "./libft/libft.h"
# include <string.h>
# include <fcntl.h>
# define BUFF_SIZE 10000
int get_next_line(int fd, char **line);
#endif