-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathget_next_line.h
25 lines (21 loc) · 1.15 KB
/
get_next_line.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* get_next_line.h :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: dalves-p <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2021/06/11 13:35:18 by dalves-p #+# #+# */
/* Updated: 2021/06/22 19:19:41 by dalves-p ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef GET_NEXT_LINE_H
# define GET_NEXT_LINE_H
# include <unistd.h>
# include <stdlib.h>
# include <limits.h>
size_t ft_strlen(const char *s);
char *ft_strjoin(char *s1, char *s2);
void *ft_memcpy(char *dst, char *src, size_t n);
int get_next_line(int fd, char **line);
#endif