FIX first part of mandatory functions

This commit is contained in:
David Gailleton
2025-11-06 13:20:01 +01:00
parent 86f9f05889
commit 25a804847b
17 changed files with 115 additions and 48 deletions

View File

@@ -6,7 +6,7 @@
/* By: dgaillet <dgaillet@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2025/11/05 09:49:43 by dgaillet #+# #+# */
/* Updated: 2025/11/05 19:36:02 by dgaillet ### ########lyon.fr */
/* Updated: 2025/11/05 21:10:02 by dgaillet ### ########lyon.fr */
/* */
/* ************************************************************************** */
@@ -36,7 +36,7 @@ int ft_memcmp(const void *s1, const void *s2, size_t n);
void *ft_memchr(const void *s, int c, size_t n);
char *ft_strnstr(const char *big, const char *little, size_t len);
int ft_atoi(const char *nptr);
void *calloc(size_t nmemb, size_t size);
void *ft_calloc(size_t nmemb, size_t size);
char *ft_strdup(const char *s);
#endif