got big reimplement

i am le tired
This commit is contained in:
Khaïs COLIN 2024-11-06 17:57:34 +01:00
parent 7431326fa7
commit 607a121ced
3 changed files with 95 additions and 167 deletions

View file

@ -6,7 +6,7 @@
/* By: kcolin <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/10/23 20:23:21 by kcolin #+# #+# */
/* Updated: 2024/10/23 20:24:50 by kcolin ### ########.fr */
/* Updated: 2024/11/06 16:51:35 by kcolin ### ########.fr */
/* */
/* ************************************************************************** */
@ -23,6 +23,11 @@
# error BUFFER_SIZE must be at least 1
# endif
size_t ft_strlen(const char *s);
char *ft_strjoin(char *s1, char *s2);
char *ft_strchr(const char *s, int c);
char *ft_substr(char const *s, unsigned int start, size_t len);
char *get_next_line(int fd);
#endif