Subversion Repositories Kolibri OS

Compare Revisions

Regard whitespace Rev 6021 → Rev 6058

/programs/cmm/lib/strings.h
181,6 → 181,10
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;
385,18 → 389,6
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;
897,14 → 889,6
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