-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathget_next_line.h
More file actions
34 lines (24 loc) · 1.23 KB
/
get_next_line.h
File metadata and controls
34 lines (24 loc) · 1.23 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
25
26
27
28
29
30
31
32
33
34
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* get_next_line.h :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: ommohame <[email protected] +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/02/08 21:02:32 by ommohame #+# #+# */
/* Updated: 2022/03/12 14:53:46 by ommohame ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef GET_NEXT_LINE_H
# define GET_NEXT_LINE_H
# include <stdlib.h>
# include <unistd.h>
# include <stddef.h>
size_t ft_strlen(const char *s);
char *ft_strjoin(char *s1, char *s2);
char *reallocStr(char *str);
char *linooo(char *str);
char *ft_strchr(const char *s, int c);
char *reading(char *str, char *bfr, int fd);
char *get_next_line(int fd);
#endif