1
0
libft_new/io/get_next_line/get_next_line.h

29 lines
1.2 KiB
C
Raw Permalink Normal View History

/* ************************************************************************** */
/* */
/* ::: :::::::: */
2024-02-04 15:11:02 +01:00
/* get_next_line.h :+: :+: :+: */
/* +:+ +:+ +:+ */
2024-02-04 15:11:02 +01:00
/* By: adjoly <adjoly@student.42angouleme.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
2024-02-04 15:11:02 +01:00
/* Created: 2023/12/01 17:12:00 by adjoly #+# #+# */
2024-02-04 15:26:48 +01:00
/* Updated: 2024/02/04 15:24:21 by adjoly ### ########.fr */
/* */
/* ************************************************************************** */
2024-02-04 15:11:02 +01:00
#ifndef GET_NEXT_LINE_H
# define GET_NEXT_LINE_H
2024-02-04 15:11:02 +01:00
# include <unistd.h>
# include <stdlib.h>
2024-02-04 15:11:02 +01:00
# ifndef BUFFER_SIZE
# define BUFFER_SIZE 1
# endif
char *get_next_line(int fd);
char *ft_strjoin_gnl(char *s1, char *s2);
void *ft_calloc(size_t nmemb, size_t size);
2024-02-04 15:26:48 +01:00
size_t ft_strlen(const char *s);
2024-02-04 15:11:02 +01:00
#endif