-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathget_next_line.h
34 lines (29 loc) · 1.31 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
34
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* get_next_line.h :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: mhiguera <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2023/03/26 17:36:39 by mhiguera #+# #+# */
/* Updated: 2023/04/26 15:54:58 by mhiguera ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef GET_NEXT_LINE_H
# define GET_NEXT_LINE_H
# include <fcntl.h>
# include <unistd.h>
# include <stdio.h>
# include <string.h>
# include <stdlib.h>
# ifndef BUFFER_SIZE
# define BUFFER_SIZE 5
# endif
char *get_next_line(int fd);
char *ft_strchr(const char *s, int c);
char *ft_strjoin(char *s1, char *s2);
size_t ft_strlen(const char *s);
char *ft_ending(char *str);
char *ft_extra(char *aux);
char *ft_save(int fd, char *aux);
#endif