/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* get_next_line.h :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: aortigos # include # include # include "../libft/libft.h" # ifndef BUFFER_SIZE # define BUFFER_SIZE 10000 # endif char *get_next_line(int fd); char *ft_read_to_left_str(int fd, char *left_str); char *ft_get_line(char *left_str); char *ft_new_left_str(char *left_str); #endif