FSF.LStricmp

Far Manager

LStricmp

The FSF.LStricmp function compares two strings without case sensitivity. This function works in OEM code page.
int WINAPI LStricmp(
  const char *Str1,
  const char *Str2
);

Parameters

Str1, Str2
The strings you want to compare.

Return value

This function returns:
-1 - if s1 < s2
1 - if s1 > s2
0 - if s1 == s2

Remarks

Example