Subversion Repositories Kolibri OS

Compare Revisions

Regard whitespace Rev 6058 → Rev 6057

/programs/cmm/lib/strings.h
181,10 → 181,6
return 0;
}
 
inline signed int streq(dword text1, text2) {
if (!strcmp(text1,text2)) return true; else return false;
}
 
/*
signed int strncmp(dword s1, s2, signed n)
unsigned char _s1,_s2;
389,6 → 385,18
ESBYTE[ESI+EDI+1] = 0;
}
 
 
inline fastcall signed int old_strchr( ESI,BL)
{
int jj=0;
do{
jj++;
$lodsb
IF(AL==BL) return jj;
} while(AL!=0);
return 0;
}
 
inline dword strchr(dword shb;char s)
{
char ss;
889,6 → 897,14
return 0;
}
 
inline void debugi(dword d_int)
{
char tmpch[12];
itoa_(#tmpch, d_int);
debugln(#tmpch);
}
 
 
#define strnmov strmovn
#define stricmp strcmpi
#define strcmpn strncmp