_memicmp.3w

Langue: en

Version: Jun 2009 (debian - 07/07/09)

Section: 3 (Bibliothèques de fonctions)

NAME

_memicmp (NTDLL.@)

SYNOPSIS

INT _memicmp
 (
  LPCSTR s1,
  LPCSTR s2,
  DWORD  len
 )

DESCRIPTION

Compare two blocks of memory as strings, ignoring case.

PARAMS

s1 [In] First string to compare to s2.

s2 [In] Second string to compare to s1.

len [In] Number of bytes to compare.

RETURNS

An integer less than, equal to, or greater than zero indicating that s1 is less than, equal to or greater than s2 respectively.

NOTES

Any Nul characters in s1 or s2 are ignored. This function always compares up to len bytes or the first place where s1 and s2 differ.

IMPLEMENTATION

Defined in "windowsx.h".

Implemented in "dlls/ntdll/string.c".