12345678910111213141516171819202122232425262728 |
- /* ************************************************************************** */
- /* */
- /* ::: :::::::: */
- /* get_next_line.h :+: :+: :+: */
- /* +:+ +:+ +:+ */
- /* By: mazimi <mazimi@student.42.fr> +#+ +:+ +#+ */
- /* +#+#+#+#+#+ +#+ */
- /* Created: 2014/12/04 15:11:38 by mazimi #+# #+# */
- /* Updated: 2015/09/25 13:49:41 by mazimi ### ########.fr */
- /* */
- /* ************************************************************************** */
- #ifndef GET_NEXT_LINE_H
- # define GET_NEXT_LINE_H
- # include "libft.h"
- # include <sys/types.h>
- # include <sys/uio.h>
- # include <unistd.h>
- # include <fcntl.h>
- # define BUFF_SIZE 7
- int get_next_line(int const fd, char **line);
- int get(int const fd, char *tmp, char **rst, char **line);
- char *gnl(char *tmp);
- #endif
|