github to gitea

This commit is contained in:
lfirmin
2025-11-16 10:11:37 +01:00
commit a219e820ad
4 changed files with 138 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_strlen.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: lfirmin <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/02/13 23:22:51 by lfirmin #+# #+# */
/* Updated: 2024/02/22 12:03:54 by lfirmin ### ########.fr */
/* */
/* ************************************************************************** */
int ft_strlen(char *str)
{
int i;
i = 0;
while (str[i])
i++ ;
return (i);
}