-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathget_next_line.h
23 lines (21 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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* get_next_line.h :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: eleclet <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2015/12/22 19:27:57 by eleclet #+# #+# */
/* Updated: 2015/12/31 16:27:07 by eleclet ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef GET_NEXT_LINE_H
# define GET_NEXT_LINE_H
# define BUFF_SIZE 19
#include "libft/libft.h"
#include <stdio.h>
int get_next_line(int const fd, char **line);
int es_read(int fd, char **line);
char *split(char *s,char **line);
int n(char *s);
#endif