_memicmp (NTDLL.@)
INT _memicmp ( LPCSTR s1, LPCSTR s2, DWORD len )
Compare two blocks of memory as strings, ignoring case.
s1 | [In] | First string to compare to s2. |
s2 | [In] | Second string to compare to s1. |
len | [In] | Number of bytes to compare. |
An integer less than, equal to, or greater than zero indicating that s1 is less than, equal to or greater than s2 respectively.
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.
Defined in "windowsx.h".
Implemented in "dlls/ntdll/string.c". source.winehq.org/source/dlls/ntdll/string.c
Copyright © 2007 The Wine Project. All trademarks are the property of their respective owners. Visit WineHQ for license details. Generated Mar 2007.