fix conflict

This commit is contained in:
Maoake Teriierooiterai
2026-01-08 15:07:55 +01:00
12 changed files with 140 additions and 24 deletions

View File

@@ -21,3 +21,13 @@ size_t ft_strlen(const char *s)
i++;
return (i);
}
int len_split(char **tab)
{
int i;
i = 0;
while (tab[i])
i++;
return (i);
}