-
Notifications
You must be signed in to change notification settings - Fork 0
/
get_next_line.h
28 lines (25 loc) · 1.27 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
27
28
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* get_next_line.h :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: ebouabba <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2021/11/27 15:05:52 by ebouabba #+# #+# */
/* Updated: 2021/12/05 21:51:26 by ebouabba ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef GET_NEXT_LINE_H
# define GET_NEXT_LINE_H
# include <stdlib.h>
# include <unistd.h>
# include <stddef.h>
char *get_next_line(int fd);
char *ft_strjoin(char *var_static, char *var);
char *ft_substr(char *s, int start, int len);
int ft_strlen(char *s);
char *ft_get_line(char *var_static);
char *ft_readfile(char *var_static, int fd);
int ft_backslash(char *s);
char *ft_strdup(const char *s1);
#endif