Subversion Repositories Kolibri OS

Compare Revisions

Regard whitespace Rev 7940 → Rev 7941

/programs/cmm/lib/strings.h
491,6 → 491,18
}
}
 
inline int strnum(dword haystack, needle)
{
int count = 0;
int needle_len = strlen(needle);
loop() {
if (! haystack = strstr(haystack, needle)) break;
haystack+=needle_len;
count++;
}
return count;
}
 
inline signed int strcmpi(dword cmp1, cmp2)
{
char si, ue;