utility.library/Stricmp

Previous:
utility.library/SMult64
TOC:
Table of Contents
Index:
All Documents
Next:
utility.library/Strnicmp

     Title:
Stricmp -- case-insensitive string comparison. (V37)
     Synopsis:
result = Stricmp(string1,string2);
D0  A0      A1

LONG Stricmp(STRPTR,STRPTR);
     Function:
This function compares two strings, ignoring case using a generic
case conversion routine. If the strings have different lengths,
the shorter is treated as if it were extended with zeros.
     Parameters:
string1, string2 - strings to be compared
     Results:
result - relationship between string1 and string2
<0 means string1 < string2
=0 means string1 = string2
>0 means string1 > string2
     Please note:
Whenever locale.library is installed in a system, this function is
replaced by language-specific code. This means that depending on
which language the user has currently selected, identical pairs of
strings may return different values when passed to this function.
This fact must be taken into consideration when using this function.
     Related topics:
Strnicmp(), locale.library/StrnCmp()

Browse your own file: