/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* getnextline.h :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: jhalford +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2016/11/07 13:21:59 by jhalford #+# #+# */ /* Updated: 2016/11/07 13:22:13 by jhalford ### ########.fr */ /* */ /* ************************************************************************** */ #ifndef GET_NEXT_LINE_H # define GET_NEXT_LINE_H # define BUFF_SIZE 10 # include "libft.h" int get_next_line(int const fd, char **line); #endif