-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathget_next_line.h
More file actions
24 lines (21 loc) · 1.1 KB
/
Copy pathget_next_line.h
File metadata and controls
24 lines (21 loc) · 1.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* get_next_line.h :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: jony <jony@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2019/11/07 14:54:17 by mhasan #+# #+# */
/* Updated: 2019/12/17 22:35:40 by jony ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef GET_NEXT_LINE_H
#define GET_NEXT_LINE_H
#define BUFF_SIZE 10
#include <unistd.h>
#include <stdio.h>
#include <fcntl.h>
#include "libft/libft.h"
int get_next_line(const int fd, char **line);
char *ft_strnew(size_t size);
#endif