RtlEqualString

BOOLEAN
    RtlEqualString(

        IN PSTRING  String1,
        IN PSTRING  String2,
        IN BOOLEAN  CaseInSensitive
        );

RtlEqualString compares two alphabetic strings to determine whether they are equal.

Parameters

String1
Points to the first string.
String2
Points to the second string.
CaseInSensitive
If TRUE, case should be ignored when doing the comparison.

Return Value

RtlEqualString returns TRUE if the two strings are equal.

Comments

RtlEqualString compares strings containing only ANSI alphabetic characters.

Callers of RtlEqualString must be running at IRQL PASSIVE_LEVEL.

See Also

RtlEqualUnicodeString