-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathget_next_line.h
34 lines (28 loc) · 1.2 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
31
32
33
34
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* get_next_line.h :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: vportell <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2016/11/13 14:49:33 by vportell #+# #+# */
/* Updated: 2016/11/28 17:03:47 by vportell ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef GET_NEXT_LINE_H
# define GET_NEXT_LINE_H
# include <stdlib.h>
# include <unistd.h>
# include <fcntl.h>
# include <stdio.h>
# include "libft/libft.h"
# define BUFF_SIZE 8
typedef struct s_file
{
int fd;
int s;
char *str;
struct s_file *next;
} t_file;
int get_next_line(const int fd, char **line);
#endif