[FIX] coding style on len_array

This commit is contained in:
Titouanhct
2025-04-16 18:13:54 +02:00
parent 85f34a218e
commit fc16e65bb9

View File

@@ -11,7 +11,7 @@ int len_array(char **array)
{
int i = 0;
while(array[i] != NULL)
while (array[i] != NULL)
i++;
return i;
}
}