9 lines
147 B
C
9 lines
147 B
C
#ifndef GET_NEXT_LINE_H
|
|
# define GET_NEXT_LINE_H
|
|
|
|
# include "libft.h"
|
|
# define BUFF_SIZE 10
|
|
|
|
int get_next_line(int const fd, char **line);
|
|
|
|
#endif
|