-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathget_next_line.h
26 lines (22 loc) · 1.21 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
26
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* get_next_line.h :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: tmendes- <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2020/05/06 13:22:31 by tmendes- #+# #+# */
/* Updated: 2020/06/27 15:46:32 by tmendes- ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef GET_NEXT_LINE_H
# define GET_NEXT_LINE_H
# include <unistd.h>
# include <stdlib.h>
# define MAX_FD 1024
unsigned long ft_strlen(const char *s);
char *ft_strjoin(const char *s1, const char *s2);
void *ft_memmove(void *dst, const void *src, size_t len);
char *ft_strdup(const char *s);
int get_next_line(int fd, char **line);
#endif