32 lines
1.3 KiB
C
32 lines
1.3 KiB
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* get_next_line.h :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: sadjigui <sadjigui@student.42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2021/10/14 15:43:40 by sadjigui #+# #+# */
|
|
/* Updated: 2021/12/21 17:47:29 by sadjigui ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#ifndef GET_NEXT_LINE_H
|
|
# define GET_NEXT_LINE_H
|
|
|
|
#define BUFFER_SIZE 4096
|
|
|
|
# include <unistd.h>
|
|
# include <stdlib.h>
|
|
# include <stdio.h>
|
|
# include <sys/types.h>
|
|
# include <fcntl.h>
|
|
|
|
char *get_next_line(int fd);
|
|
char *ft_strdup(const char *src);
|
|
char *ft_strjoin(char const *s1, char const *s2);
|
|
size_t ft_strlen(const char *str);
|
|
char *ft_substr(char const *s, unsigned int start, size_t len);
|
|
char *ft_check(char *s, char c);
|
|
|
|
#endif
|