-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathget_next_line.h
33 lines (28 loc) · 1.29 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
29
30
31
32
33
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* get_next_line.h :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: aheinane <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2023/11/24 13:52:59 by aheinane #+# #+# */
/* Updated: 2024/10/28 11:40:10 by aheinane ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef GET_NEXT_LINE_H
# define GET_NEXT_LINE_H
# include <stdlib.h>
# include <unistd.h>
# include <stdarg.h>
# include <stdint.h>
# ifndef BUFFER_SIZE
# define BUFFER_SIZE 1
# endif
char *get_next_line(int fd);
char *ft_read(int fd, char *storage);
size_t gnl_strlen(char *str );
char *gnl_strjoin(char *s1, char *s2);
char *gnl_strchr(char *s, int c);
char *free_function(char **str);
char *ft_exist(char *str);
#endif