home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Dream 48
/
Amiga_Dream_48.iso
/
Atari
/
c
/
sozobon-v2
/
dlibsrc.lha
/
STRICMP.C
< prev
next >
Wrap
Text File
|
1988-10-05
|
201b
|
11 lines
int stricmp(str1, str2)
register char *str1, *str2;
{
register char c1, c2;
while((c1 = tolower(*str1++)) == (c2 = tolower(*str2++)))
if(c1 == '\0')
return(0);
return(c1 - c2);
}