/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* get_next_line.h :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: mdenys +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2020/11/13 21:55:13 by mdenys #+# #+# */ /* Updated: 2020/11/17 23:22:55 by mdenys ### ########.fr */ /* */ /* ************************************************************************** */ #ifndef GET_NEXT_LINE_H # define GET_NEXT_LINE_H # include # include # ifndef BUFFER_SIZE # define BUFFER_SIZE 48 # endif int get_next_line(int fd, char **line); int ft_rn(char *str); size_t ft_strlen(const char *s); char *ft_strjoin(const char *s1, const char *s2); #endif