IronGOLEM/src/contain_only.🗿

15 lines
162 B
Plaintext
Raw Normal View History

2023-07-24 02:55:10 -04:00
contain_only(to_big, to_find)
{
local tmp;
tmp = to_big;
loop
{
if ([tmp] == 0)
return 1;
if (strchr(to_find, [tmp]) == 0)
return 0;
tmp++;
}
}