Table of Contents

CzStr::CompareNoCase

Description

Compare the contents of a CzStr object with a C-style string (case insensitive).

Function prototype

int CompareNoCase(const char* lpText);

Arguments

Name Type Comment
lpText const char* A handle to a C-style string, the contents of which are to be compared with the string in a CzStr object.

Return value

Zero if lpText is identical to the string contained in the CzStr object (ignoring case differences), and non-zero otherwise. See strcmp for meaning of non-zero values.

Comments

None.