-
Notifications
You must be signed in to change notification settings - Fork 0
/
get_next_line_bonus.h
executable file
·32 lines (25 loc) · 1.25 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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* get_next_line_bonus.h :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: ebabaogl <[email protected] +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/11/03 11:09:46 by ebabaogl #+# #+# */
/* Updated: 2024/11/04 14:34:15 by ebabaogl ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef GET_NEXT_LINE_BONUS_H
# define GET_NEXT_LINE_BONUS_H
# ifndef BUFFER_SIZE
# define BUFFER_SIZE 5
# endif
# define FD_MAX 4096
# include <stddef.h>
char *get_next_line(int fd);
size_t ft_strlen(char *s);
void *ft_memset(void *b, int c, size_t len);
void *ft_calloc(size_t count, size_t size);
char *ft_strchr(char *s, int c);
char *ft_strjoin(char *s1, char *s2);
#endif