29 lines
1.2 KiB
C
29 lines
1.2 KiB
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* get_next_line.h :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: mdenys <mdenys@student.42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2020/11/13 21:55:13 by mdenys #+# #+# */
|
|
/* Updated: 2020/11/17 23:22:55 by mdenys ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#ifndef GET_NEXT_LINE_H
|
|
# define GET_NEXT_LINE_H
|
|
|
|
# include <stdlib.h>
|
|
# include <unistd.h>
|
|
|
|
# ifndef BUFFER_SIZE
|
|
# define BUFFER_SIZE 48
|
|
# endif
|
|
|
|
int get_next_line(int fd, char **line);
|
|
int ft_rn(char *str);
|
|
size_t ft_strlen(const char *s);
|
|
char *ft_strjoin(const char *s1, const char *s2);
|
|
|
|
#endif
|