/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* get_next_line.h :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: hexplor +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2023/12/20 14:34:57 by hexplor #+# #+# */ /* Updated: 2023/12/26 15:07:02 by hexplor ### ########.fr */ /* */ /* ************************************************************************** */ #ifndef GET_NEXT_LINE_H # define GET_NEXT_LINE_H # include # include # include # include # ifndef BUFFER_SIZE # define BUFFER_SIZE 42 # endif char *get_next_line(int fd); char *gnl_strjoin(char *s1, char *s2); char *gnl_strchr(char *s, int c); size_t gnl_strlen(char *s); #endif //mettre la librairie en static pour ne pas avoir de probleme de compilation