add: strchri

This commit is contained in:
2023-06-18 18:11:55 +02:00
parent e7a752458f
commit d0f4398f78
2 changed files with 20 additions and 0 deletions

12
src/strchri.🗿 Normal file
View File

@ -0,0 +1,12 @@
strchri(str, c)
{
local i = 0;
loop {
if ([str + i] == c)
return (i);
if ([str + i] == 0)
return (0 - 1);
i++;
}
}