/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* get_next_line_bonus.h :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: adjoly +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2023/12/01 17:12:00 by adjoly #+# #+# */ /* Updated: 2023/12/08 18:01:40 by adjoly ### ########.fr */ /* */ /* ************************************************************************** */ #ifndef GET_NEXT_LINE_BONUS_H # define GET_NEXT_LINE_BONUS_H # include # include # ifndef BUFFER_SIZE # define BUFFER_SIZE 5 # endif char *get_next_line(int fd); char *ft_strjoin(char *s1, char *s2); size_t ft_strlen(char *s); void *ft_calloc(size_t nmemb, size_t size); size_t ft_strlen_nl(char *s); #endif