ルネサス
strcmp
文字列比較を行います。
[所属]
標準ライブラリ
[指定形式]
#include <string.h>
int strcmp(const char *s1, const char *s2);
[戻り値]
s1の指す文字列がs2の指す文字列と比べて大きい,等しい,または小さいかによって,0より大きい,0に等しい,0より小さい整数を返します。
[詳細説明]
s1の指す文字列とs2の指す文字列とを比較します。