NAME

NTDLL__memicmp  (NTDLL.@)

SYNOPSIS

 INT NTDLL__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

Not defined in a Wine header. The function is either undocumented, or missing from Wine.

Implemented in "dlls/ntdll/string.c". source.winehq.org/source/dlls/ntdll/string.c


Copyright © 2005 The Wine Project. All trademarks are the property of their respective owners. Visit WineHQ for license details. Generated Aug 2005.