头文件:#include <string.h>
bcmp() 比较内存(字符串)的前n个字节是否相等,其原型为:
int bcmp(const void *s1, const void * s2, int n);
【参数】s1, s2 为需要比较的两块内存(或两个字符串),n 为要比较的长度。
【返回值】如果 s1, s2 的前 n 个字节相等或者 n 等于 0,则返回 0,否则返回非 0 值。
bcmp() 函数不检查NULL。
实际上,bcmp() 和 memcmp() 功能相同,用来比较内存块的前 n 个字节是否相等,但是 s1, s2 两个参数为指针,又很奇怪的位于 string.h 文件中,也可以用来比较字符串。
注意:bcmp() 不是标准函数,没有在ANSI中定义,笔者在VC6.0和MinGW5下编译没通过;据称Linux下的GCC支持,不过笔者没有亲测。鉴于此,还是使用 memcmp() 替代吧。
更多信息请查看:C语言bcopy()和memcpy()、bzero()和memset()、bcmp()和memcmp()几个函数的差别
勉为其难的举个例子吧:
#include <stdio.h>
#include <string.h>
int main ()
{
char *s1 = "Golden Global View";
char *s2 = "Golden Global View";
if( !bcmp(s1, s2, 7) )
printf("s1 equal to s2 in first 7 bytes");
else
printf("s1 not equal to s2 in first 7 bytes");
return 0;
}