_memicmp, _memicmp_l

比较两种缓冲区的字符 (不区分大小写)。

int _memicmp(
   const void *buf1,
   const void *buf2,
   size_t count 
);
int _memicmp_l(
   const void *buf1,
   const void *buf2,
   size_t count,
   _locale_t locale
);

参数

  • buf1
    第一个缓冲区。

  • buf2
    第二个缓冲区。

  • count
    字符数。

  • locale
    使用的区域设置。

返回值

返回值指示缓冲区之间的关系。

返回值

第一个绑定字节关系 buf1 和 buf2

< 0

buf1 小于 buf2。

0

buf1 与 buf2。

> 0

buf1 大于 buf2。

_NLSCMPERROR

发生了错误。

备注

_memicmp 功能由字节比较两个缓冲区 buf1 和 buf2 字节的第一 count 字符。 此比较不区分大小写。

如果 buf1 或 buf2 是 null 指针,此函数调用无效参数处理程序,如 参数验证所述。 如果执行允许继续,该函数返回 _NLSCMPERROR 并将 errno 到 EINVAL。

_memicmp 对区域设置相关的行为使用当前区域设置; _memicmp_l 与相同,但它使用的区域设置。 有关更多信息,请参见 区域设置

要求

实例

必需的头

_memicmp

memory.h 或 string.h

_memicmp_l

memory.h 或 string.h

有关更多兼容性信息,请参见中介绍的 兼容性

示例

// crt_memicmp.c
// This program uses _memicmp to compare
// the first 29 letters of the strings named first and
// second without regard to the case of the letters.

#include <memory.h>
#include <stdio.h>
#include <string.h>

int main( void )
{
   int result;
   char first[] = "Those Who Will Not Learn from History";
   char second[] = "THOSE WHO WILL NOT LEARN FROM their mistakes";
   // Note that the 29th character is right here ^

   printf( "Compare '%.29s' to '%.29s'\n", first, second );
   result = _memicmp( first, second, 29 );
   if( result < 0 )
      printf( "First is less than second.\n" );
   else if( result == 0 )
      printf( "First is equal to second.\n" );
   else if( result > 0 )
      printf( "First is greater than second.\n" );
}
  

.NET Framework 等效项

不适用。若要调用标准 C 函数,请使用 PInvoke。有关更多信息,请参见 平台调用示例

请参见

参考

缓冲区处理

_memccpy

memchr, wmemchr

memcmp, wmemcmp

memcpy, wmemcpy

memset, wmemset

_stricmp, _wcsicmp, _mbsicmp, _stricmp_l, _wcsicmp_l, _mbsicmp_l

_strnicmp, _wcsnicmp, _mbsnicmp, _strnicmp_l, _wcsnicmp_l, _mbsnicmp_l