-
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: omoudni <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2021/12/07 22:51:39 by omoudni #+# #+# */
/* Updated: 2021/12/07 23:04:22 by omoudni ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef GET_NEXT_LINE_H
# define GET_NEXT_LINE_H
# include <unistd.h>
# include <stdlib.h>
int get_index(char *str, char c);
char *ft_strndup(char *str, int len);
char *ft_strjoin(char *str1, char *str2);
char *b_buff_to_line(char **b_buff);
char *get_next_line(int fd);
#endif