GNL with static buf worked. Next step, find a way to catch multiple nl when they're in the same buf

This commit is contained in:
David Gailleton
2025-11-21 19:07:39 +01:00
parent e7d0e929b3
commit 2b7dad9c15
3 changed files with 174 additions and 4 deletions

View File

@@ -6,13 +6,24 @@
/* By: dgaillet <dgaillet@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2025/11/21 17:22:03 by dgaillet #+# #+# */
/* Updated: 2025/11/21 17:22:38 by dgaillet ### ########lyon.fr */
/* Updated: 2025/11/21 18:57:22 by dgaillet ### ########lyon.fr */
/* */
/* ************************************************************************** */
#ifndef GET_NEXT_LINE_H
# define GET_NEXT_LINE_H
# ifndef BUFFER_SIZE
# define BUFFER_SIZE 42
# endif
# include <stdlib.h>
char *get_next_line(int fd);
int index_of_nl(char *str, int limit);
char *ft_strjoin_new(char const *s1, char const *s2, size_t limit);
size_t ft_strlen(const char *s);
char *ft_substr(char const *s, unsigned int start, size_t len);
#endif