fix: follow norminette norms

This commit is contained in:
2025-10-11 21:59:34 +02:00
parent 8a5f4636ff
commit 327d115d41

View File

@@ -13,6 +13,5 @@ void *ft_memchr(const void *s, int c, size_t n)
return ((void *)(ptr + i)); return ((void *)(ptr + i));
i++; i++;
} }
return (NULL);
return NULL;
} }