2 つの文字列が等しいかどうか (大文字と小文字を区別しない) を比較する必要がありますが、私の実装ではコンパイル時に多くの警告が返されます。
私の実装:
//The word array will contain any number of strings of varying lengths
//string is the word to compare to
char **wordArray, char*string;
int i, sizeOfArray = 10
for(i = 0; i < 10; i++)
{
//Return 1 if the string is seen in the array
if(strcmp(tolower(wordArray[i]), tolower(string)) == 0)
return 1;
}
return 0;
次の警告が表示されます。
warning: passing argument 1 of ‘tolower’ makes integer from pointer without a cast [enabled by default]
note: expected ‘int’ but argument is of type ‘char *’
initialization makes pointer from integer without a cast [enabled by default]
どうすればこれを実装できますか