/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* get_next_line_bonus.h :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: jamrabhi +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2019/12/05 12:55:15 by jamrabhi #+# #+# */ /* Updated: 2019/12/05 12:57:31 by jamrabhi ### ########.fr */ /* */ /* ************************************************************************** */ #ifndef GET_NEXT_LINE_BONUS_H # define GET_NEXT_LINE_BONUS_H # include # include # include # include # include # include # include int get_next_line(int fd, char **line); char *ft_strjoin(char const *s1, char const *s2); char *ft_substr(char const *s, unsigned int start, size_t len); char *ft_strchr(const char *s, int c); size_t ft_strlen(const char *str); void *ft_memalloc(size_t size); #endif