memcmp, wmemcmp
두 개의 버퍼의 문자를 비교 합니다.
int memcmp(
const void *buf1,
const void *buf2,
size_t count
);
int wmemcmp(
const wchar_t * buf1,
const wchar_t * buf2,
size_t count
);
매개 변수
buf1
첫 번째 버퍼입니다.buf2
두 번째 버퍼입니다.count
문자 수 (바이트에 대 한 memcmp, 와이드 문자에 대 한 wmemcmp).
반환 값
반환 값의 관계는 버퍼를 나타냅니다.
반환 값 |
첫째 count 바이트 buf1와 buf2의 관계 |
---|---|
< 0 |
buf1보다 작은buf2 |
0 |
buf1동일 합니다buf2 |
> 0 |
buf1보다 큼buf2 |
설명
첫 번째 비교 count 문자를 buf1 및 buf2 와 관계를 나타내는 값을 반환 합니다.
요구 사항
루틴 |
필수 헤더 |
---|---|
memcmp |
<memory.h> 또는 <string.h> |
wmemcmp |
<wchar.h> |
추가 호환성 정보를 참조 하십시오. 호환성 소개에서 합니다.
라이브러리
모든 버전의 C 런타임 라이브러리.
예제
// crt_memcmp.c
/* This program uses memcmp to compare
* the strings named first and second. If the first
* 19 bytes of the strings are equal, the program
* considers the strings to be equal.
*/
#include <string.h>
#include <stdio.h>
int main( void )
{
char first[] = "12345678901234567890";
char second[] = "12345678901234567891";
int int_arr1[] = {1,2,3,4};
int int_arr2[] = {1,2,3,4};
int result;
printf( "Compare '%.19s' to '%.19s':\n", first, second );
result = memcmp( first, second, 19 );
if( result < 0 )
printf( "First is less than second.\n" );
else if( result == 0 )
printf( "First is equal to second.\n" );
else
printf( "First is greater than second.\n" );
printf( "Compare '%d,%d' to '%d,%d':\n", int_arr1[0], int_arr1[1], int_arr2[0], int_arr2[1]);
result = memcmp( int_arr1, int_arr2, sizeof(int) * 2 );
if( result < 0 )
printf( "int_arr1 is less than int_arr2.\n" );
else if( result == 0 )
printf( "int_arr1 is equal to int_arr2.\n" );
else
printf( "int_arr1 is greater than int_arr2.\n" );
}
Output
Compare '1234567890123456789' to '1234567890123456789':
First is equal to second.
Compare '1,2' to '1,2':
int_arr1 is equal to int_arr2.
해당 .NET Framework 항목
해당 사항 없음. 표준 C 함수를 호출할 수 있습니다 PInvoke. 자세한 내용은 플랫폼 호출 예제.