2022-11-14 09:45:44 -05:00
|
|
|
/* ************************************************************************** */
|
|
|
|
/* */
|
|
|
|
/* ::: :::::::: */
|
|
|
|
/* get_next_line_bonus.h :+: :+: :+: */
|
|
|
|
/* +:+ +:+ +:+ */
|
2022-11-14 09:53:40 -05:00
|
|
|
/* By: cchauvet <cchauvet@student.42angouleme.fr +#+ +:+ +#+ */
|
2022-11-14 09:45:44 -05:00
|
|
|
/* +#+#+#+#+#+ +#+ */
|
2022-11-14 09:53:40 -05:00
|
|
|
/* Created: 2022/11/14 15:38:06 by cchauvet #+# #+# */
|
2022-11-14 11:31:11 -05:00
|
|
|
/* Updated: 2022/11/14 17:29:19 by cchauvet ### ########.fr */
|
2022-11-14 09:45:44 -05:00
|
|
|
/* */
|
|
|
|
/* ************************************************************************** */
|
|
|
|
|
2022-11-14 10:10:06 -05:00
|
|
|
#ifndef GET_NEXT_LINE_BONUS_H
|
|
|
|
# define GET_NEXT_LINE_BONUS_H
|
2022-11-14 09:53:40 -05:00
|
|
|
# include <stdlib.h>
|
|
|
|
# include <unistd.h>
|
2022-11-14 11:31:11 -05:00
|
|
|
# ifndef BUFFER_SIZE
|
|
|
|
# define BUFFER_SIZE 42
|
|
|
|
# endif
|
2022-11-14 09:53:40 -05:00
|
|
|
|
|
|
|
void *ft_calloc(size_t nmemb, size_t size);
|
|
|
|
void *ft_realloc(void *ptr, size_t size);
|
|
|
|
char *ft_strfjoin(char *dst, char *src);
|
|
|
|
char *ft_strndup(char *src, size_t n);
|
|
|
|
size_t ft_strlen(char *str);
|
|
|
|
ssize_t ft_strchr(char *str, char c);
|
|
|
|
char *get_next_line(int fd);
|
|
|
|
#endif
|