mirror of
https://github.com/fofolee/uTools-Manuals.git
synced 2025-06-08 06:55:36 +08:00
47 lines
1.1 KiB
HTML
47 lines
1.1 KiB
HTML
<h1>字符串函数 - memcmp</h1>
|
||
|
||
|
||
<p>原型:extern int memcmp(void *buf1, void *buf2, unsigned int count);</p>
|
||
|
||
<p>用法:#include <string.h></p>
|
||
|
||
<p>功能:比较内存区域buf1和buf2的前count个字节。</p>
|
||
|
||
<p>说明:</p>
|
||
<pre><code class="language-c">
|
||
当buf1<buf2时,返回值<0
|
||
当buf1=buf2时,返回值=0
|
||
当buf1>buf2时,返回值>0
|
||
</code></pre>
|
||
举例:<pre><code class="language-c">
|
||
|
||
// memcmp.c
|
||
|
||
#include <syslib.h>
|
||
#include <string.h>
|
||
|
||
main()
|
||
{
|
||
char *s1="Hello, Programmers!";
|
||
char *s2="Hello, programmers!";
|
||
int r;
|
||
|
||
clrscr();
|
||
|
||
r=memcmp(s1,s2,strlen(s1));
|
||
if(!r)
|
||
printf("s1 and s2 are identical");
|
||
else
|
||
if(r<0)
|
||
printf("s1 less than s2");
|
||
else
|
||
printf("s1 greater than s2");
|
||
|
||
|
||
getchar();
|
||
return 0;
|
||
}
|
||
|
||
</code></pre>相关函数:<a href="memicmp.html">memicmp</a>,<a href="strcmp.html">strcmp</a>
|
||
|