Subversion Repositories Kolibri OS

Compare Revisions

Regard whitespace Rev 7944 → Rev 7945

/programs/cmm/lib/strings.h
503,6 → 503,18
return count;
}
 
inline int strinum(dword haystack, needle)
{
int count = 0;
int needle_len = strlen(needle);
loop() {
if (! haystack = strstri(haystack, needle)) break;
haystack+=needle_len;
count++;
}
return count;
}
 
inline signed int strcmpi(dword cmp1, cmp2)
{
char si, ue;
537,7 → 549,7
searchin++;
if (DSBYTE[usestr_e]=='\0') return searchin;
}
return -1;
return 0;
}
 
 
546,8 → 558,7
dword startp, endp;
dword copyin_start_off = copyin;
if (startstr==0) startp = search_in; else startp = strstr(search_in, startstr) + strlen(startstr);
endp = strstri(startp, endstr);
if (endp==0) endp = startp+strlen(search_in);
if (! endp = strstri(startp, endstr)) endp = startp+strlen(search_in);
//if (startp==endp) return 0;
do
{