Last development push

This commit is contained in:
2025-12-09 19:57:51 +01:00
parent a7f7d77bf9
commit 5e08fc76ef
25 changed files with 764 additions and 195 deletions

View File

@@ -3,10 +3,10 @@
/* ::: :::::::: */
/* ft_strchr.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: aortigos <aortigos@student.42malaga.com> +#+ +:+ +#+ */
/* By: aortigos <aortigos@student.42malaga.com +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2023/09/21 17:16:15 by aortigos #+# #+# */
/* Updated: 2023/10/12 15:15:10 by aortigos ### ########.fr */
/* Updated: 2025/12/09 19:12:12 by aortigos ### ########.fr */
/* */
/* ************************************************************************** */
@@ -16,6 +16,8 @@ char *ft_strchr(const char *str, int c)
{
size_t i;
if (!str)
return (NULL);
i = 0;
while (str[i] != '\0')
{