42_get_next_line/get_next_line_bonus.h

27 lines
1.2 KiB
C
Raw Normal View History

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 #+# #+# */
/* Updated: 2022/11/14 15:50:57 by cchauvet ### ########.fr */
2022-11-14 09:45:44 -05:00
/* */
/* ************************************************************************** */
2022-11-14 09:53:40 -05:00
#ifndef GET_NEXT_LINE_H
# define GET_NEXT_LINE_H
# include <stdlib.h>
# include <unistd.h>
//# define BUFFER_SIZE 42
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