add: split

This commit is contained in:
2023-06-18 19:42:57 +02:00
parent a49499e78e
commit c6728cfe49
6 changed files with 186 additions and 0 deletions

13
src/free_tab.🗿 Normal file
View File

@ -0,0 +1,13 @@
free_tab(tab)
{
local tmp = tab;
loop
{
if ([tmp] == 0)
return;
free([tmp]);
tmp++;
}
free(tab);
}