26 lines
1.1 KiB
C
26 lines
1.1 KiB
C
|
/* ************************************************************************** */
|
||
|
/* */
|
||
|
/* ::: :::::::: */
|
||
|
/* get_next_line.h :+: :+: :+: */
|
||
|
/* +:+ +:+ +:+ */
|
||
|
/* By: cchauvet <cchauvet@student.42angouleme.fr +#+ +:+ +#+ */
|
||
|
/* +#+#+#+#+#+ +#+ */
|
||
|
/* Created: 2022/11/14 15:38:06 by cchauvet #+# #+# */
|
||
|
/* Updated: 2023/01/10 18:26:56 by cchauvet ### ########.fr */
|
||
|
/* */
|
||
|
/* ************************************************************************** */
|
||
|
|
||
|
#ifndef GET_NEXT_LINE_H
|
||
|
# define GET_NEXT_LINE_H
|
||
|
# include <stdlib.h>
|
||
|
# include <unistd.h>
|
||
|
# ifndef BUFFER_SIZE
|
||
|
# define BUFFER_SIZE 42
|
||
|
# endif
|
||
|
# include "../libft/libft.h"
|
||
|
# include "../extra/extra.h"
|
||
|
|
||
|
char *get_next_line(int fd);
|
||
|
|
||
|
#endif
|