From eb7bc20725bf2de76c4adc1fcfead8c8ebfc0696 Mon Sep 17 00:00:00 2001 From: Raphael Date: Thu, 11 Dec 2025 15:31:19 +0100 Subject: [PATCH] style(includes): header of gnl is now in the includes file --- gnl/get_next_line.h | 33 --------------------------------- 1 file changed, 33 deletions(-) delete mode 100644 gnl/get_next_line.h diff --git a/gnl/get_next_line.h b/gnl/get_next_line.h deleted file mode 100644 index 3f76342..0000000 --- a/gnl/get_next_line.h +++ /dev/null @@ -1,33 +0,0 @@ -/* ************************************************************************** */ -/* */ -/* ::: :::::::: */ -/* get_next_line.h :+: :+: :+: */ -/* +:+ +:+ +:+ */ -/* By: rparodi +#+ +:+ +#+ */ -/* +#+#+#+#+#+ +#+ */ -/* Created: 2023/11/18 17:12:04 by rparodi #+# #+# */ -/* Updated: 2023/11/23 18:15:34 by rparodi ### ########.fr */ -/* */ -/* ************************************************************************** */ - -#ifndef GET_NEXT_LINE_H -# define GET_NEXT_LINE_H -# ifndef BUFFER_SIZE -# define BUFFER_SIZE 420 -# endif - -# include -# include - -char *ft_get_line(char *str); -char *get_next_line(int fd); -int ft_strchr(char *str, char c); -char *ft_get_next(char *str); -char *ft_get_line(char *str); -char *ft_strjoin(char *s1, char *s2, int i, int j); -size_t ft_strlen(char const *str); -char *file_converted(int fd); -char *ft_free(char *str); -char *ft_check(char *memory, int fd); - -#endif