clean and opti

This commit is contained in:
2023-07-25 09:48:20 +02:00
parent 2b97d38b7e
commit 09e0d32c15
6 changed files with 11 additions and 26 deletions

View File

@ -6,6 +6,6 @@ memset(tab, size, value)
if (i == size)
return (tab);
[tab + i] = value;
i = i + 1;
i++;
}
}