mirror of
https://github.com/fofolee/uTools-Manuals.git
synced 2026-03-10 07:53:30 +08:00
0.0.1
This commit is contained in:
45
docs/c/stricmp.html
Normal file
45
docs/c/stricmp.html
Normal file
@@ -0,0 +1,45 @@
|
||||
<h1>字符串函数 - stricmp</h1>
|
||||
|
||||
|
||||
<p>原型:extern int stricmp(char *s1,char * s2);</p>
|
||||
|
||||
<p>用法:#include <string.h></p>
|
||||
|
||||
<p>功能:比较字符串s1和s2,但不区分字母的大小写。</p>
|
||||
|
||||
<p>说明:strcmpi是到stricmp的宏定义,实际未提供此函数。</p>
|
||||
当s1<s2时,返回值<0
|
||||
当s1=s2时,返回值=0
|
||||
当s1>s2时,返回值>0
|
||||
|
||||
举例:<pre>
|
||||
|
||||
// stricmp.c
|
||||
|
||||
#include <syslib.h>
|
||||
#include <string.h>
|
||||
|
||||
main()
|
||||
{
|
||||
char *s1="Hello, Programmers!";
|
||||
char *s2="Hello, programmers!";
|
||||
int r;
|
||||
|
||||
clrscr();
|
||||
|
||||
r=stricmp(s1,s2);
|
||||
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;
|
||||
}
|
||||
|
||||
</pre>相关函数:<a href="bcmp.html">bcmp</a>,<a href="strcmp.html">strcmp</a>,<a href="stricmp.html">stricmp</a>
|
||||
|
||||
Reference in New Issue
Block a user