_memicmp (NTDLL.@)
int _memicmp ( const void* str1, const void* str2, size_t 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.
Declared in "include/msvcrt/memory.h". gitlab.winehq.org/wine/wine/blob/master/include/msvcrt/memory.h
Implemented in "dlls/ntdll/string.c". gitlab.winehq.org/wine/wine/blob/master/dlls/ntdll/string.c
Copyright © 2024 The Wine Project. All trademarks are the property of their respective owners. Visit WineHQ for license details. Generated Nov 2024.