NWLstricmp
Performs a case-insensitive compare of two strings
#include <nwlocale.h>
N_EXTERN_LIBRARY(nint) NWLstricmp (
const nstr N_FAR *str1,
const nstr N_FAR *str2);
uses netwin32
Function NWLstricmp
(const str1 : pnstr;
const str2 : pnstr
) : nint;
NWLstricmp compares uppercase versions of the str1 and str2 parameters and returns a value indicating their relationship.
NWLstricmp correctly handles double-byte characters.
NWLstricmp performs the comparison lexicographically using the code page value of the characters and does not use the locale sensitive collation sequence as the NWLstrcoll function. However, NWLstricmp is faster than the NWLstrcoll function and is efficient for comparing strings for equality.