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

11
src/tabcmp.🗿 Normal file
View File

@ -0,0 +1,11 @@
tabcmp_str(tab1, tab2)
{
local i = 0;
loop
{
if (strcmp([tab1 + i], [tab2 + i]) | [tab1 + i] == 0)
return ([tab1 + i] - [tab2 + i]);
i++;
}
}