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,15 +6,15 @@
/* By: dgaillet <dgaillet@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2025/11/05 17:24:37 by dgaillet #+# #+# */
/* Updated: 2025/11/05 17:38:39 by dgaillet ### ########lyon.fr */
/* Updated: 2025/11/06 12:38:20 by dgaillet ### ########lyon.fr */
/* */
/* ************************************************************************** */
char *ft_strchr(const char *s, int c)
{
if (*s == c)
if ((unsigned char) s[0] == (unsigned char) c)
return ((char *) s);
if (!(*s))
if (!s[0])
return (0);
return (ft_strchr(s + 1, c));
}