Skip to content

Latest commit

 

History

History
50 lines (34 loc) · 862 Bytes

ChrCmpI.md

File metadata and controls

50 lines (34 loc) · 862 Bytes

Home

Function name : ChrCmpI

Group: Shell Lightweight Utility APIs -- string functions - Library: shlwapi


Performs a comparison between two characters. The comparison is not case sensitive.


Declaration:

BOOL ChrCmpIW(
    WCHAR w1,
    WCHAR w2
    );

BOOL ChrCmpIA(
    WORD w1,
    WORD w2
    );
  

FoxPro declaration:

DECLARE INTEGER ChrCmpIA IN Shlwapi;
As ChrCmpI;
	SHORT w1, SHORT w2
  

Parameters:

w1 First character to be compared.

w2 Second character to be compared.


Return value:

Returns zero if the two characters are the same, or nonzero otherwise.