関数名:strictmp
ヘッダー ファイル: <string.h>
関数プロトタイプ: int strictmp(const char *str1, const char *str2);
機能: 2 つの文字列のサイズを比較しますが、大文字と小文字は区別されません
パラメータ: str1 と str2 は、比較される 2 つの文字列です。
戻り値: str1>str2 は 1 を返します。
str1==str2 は 0 を返します。
str1<str2 は -1 を返します。
プログラム例:文字列 buf1 と文字列 buf2 のサイズを比較し、結果を出力する
#include<string.h>#include<stdio.h>intmain(void){char*buf1=WWW.DOTCPP.COM,*buf2=www.dotcpp.com;intptr=stricmp(buf2,buf1);if(ptr >0){プリntf(buffer2isgreaterthanbuffer1n);}if(ptr<0){printf(buffer2islessthanbuffer1n);}if(ptr==0){printf(buffer2equalsbuffer1n);}return0;}
実行結果:
バッファ2がバッファ1と等しい