-
Notifications
You must be signed in to change notification settings - Fork 0
/
get_next_line_bonus.h
36 lines (31 loc) · 1.36 KB
/
get_next_line_bonus.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
34
35
36
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* get_next_line_bonus.h :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: rkhinchi <rkhinchi@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/12/08 16:35:56 by rkhinchi #+# #+# */
/* Updated: 2023/03/31 17:27:22 by rkhinchi ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef GET_NEXT_LINE_BONUS_H
# define GET_NEXT_LINE_BONUS_H
# include <stdlib.h>
# include <sys/uio.h>
# include <unistd.h>
# include <sys/uio.h>
# include <stddef.h>
# include <fcntl.h>
# include <stdio.h>
# ifndef BUFFER_SIZE
# define BUFFER_SIZE 8
# endif
char *ft_get_line(char *save);
char *ft_save(char *save);
char *ft_read_n_save(int fd, char *save);
char *get_next_line(int fd);
size_t ft_strlen(const char *s);
char *ft_strjoin(char *s1, char *b);
char *ft_strchr(char *t, int c);
#endif