1 out of 2 rated this helpful - Rate this topic

StrCmpI function

Compares two strings to determine if they are the same. The comparison is not case-sensitive.

Syntax


int StrCmpI(
  _In_  PCTSTR psz1,
  _In_  PCTSTR psz2
);

Parameters

psz1 [in]

Type: PCTSTR

A pointer to the first null-terminated string to be compared.

psz2 [in]

Type: PCTSTR

A pointer to the second null-terminated string to be compared.

Return value

Type: int

Returns zero if the strings are identical. Returns a positive value if the string pointed to by psz1 is greater than that pointed to by psz2. Returns a negative value if the string pointed to by psz1 is less than that pointed to by psz2.

Requirements

Minimum supported client

Windows 2000 Professional, Windows XP [desktop apps only]

Minimum supported server

Windows 2000 Server [desktop apps only]

Header

Shlwapi.h

Library

Shlwapi.lib

DLL

Shlwapi.dll (version 4.71 or later)

Unicode and ANSI names

StrCmpIW (Unicode)

 

 

Send comments about this topic to Microsoft

Build date: 11/28/2012

Did you find this helpful?
(1500 characters remaining)

Community Additions

ADD
© 2013 Microsoft. All rights reserved.