added getnextline
This commit is contained in:
parent
d55abac64b
commit
c05514fa41
3 changed files with 9 additions and 0 deletions
7
libft/includes/getnextline.h
Normal file
7
libft/includes/getnextline.h
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
#ifndef GET_NEXT_LINE_H
|
||||
# define GET_NEXT_LINE_H
|
||||
# define BUFF_SIZE 1
|
||||
|
||||
int get_next_line(int const fd, char **line);
|
||||
|
||||
#endif
|
||||
|
|
@ -2,6 +2,7 @@
|
|||
#define LIBFT_H
|
||||
# include "ftprintf.h"
|
||||
# include "ftxattr.h"
|
||||
# include "getnextline.h"
|
||||
# include <string.h>
|
||||
# include <unistd.h>
|
||||
# include <stdio.h>
|
||||
|
|
|
|||
1
libft/src/get_next_line
Submodule
1
libft/src/get_next_line
Submodule
|
|
@ -0,0 +1 @@
|
|||
Subproject commit 9f165f2770b6f768f232dde5d2ec09a3a5fabf35
|
||||
Loading…
Reference in a new issue