/* ************************************************************************** */1/* */2/* ::: :::::::: */3/* get_next_line_bonus.h :+: :+: :+: */4/* +:+ +:+ +:+ */5/* By: yabtaour <[email protected]> +#+ +:+ +#+ */6/* +#+#+#+#+#+ +#+ */7/* Created: 2021/12/09 13:44:07 by yabtaour #+# #+# */8/* Updated: 2021/12/09 13:45:31 by yabtaour ### ########.fr */9/* */10/* ************************************************************************** */11#ifndef GET_NEXT_LINE_BONUS_H12# define GET_NEXT_LINE_BONUS_H1314# include <stdlib.h>15# include <fcntl.h>16# include <unistd.h>1718size_t ft_strlen_bonus(char *str);19char *ft_strchr_bonus(char *str, int c);20char *ft_strjoin_bonus(char *s1, char *s2);21char *get_next_line(int fd);2223#endif242526