Nome da função : strictmp
Arquivo de cabeçalho : <string.h>
Protótipo de função : int strictmp(const char *str1, const char *str2);
Função : Compare o tamanho de duas strings, mas não faz distinção entre maiúsculas e minúsculas
Parâmetros : str1 e str2 são as duas strings a serem comparadas.
Valor de retorno : str1>str2 retorna 1;
str1==str2 retorna 0;
str1<str2 retorna -1;
Exemplo de programa: compare os tamanhos da string buf1 e da string buf2 e produza o resultado
#include<string.h>#include<stdio.h>intmain(void){char*buf1=WWW.DOTCPP.COM,*buf2=www.dotcpp.com;intptr=stricmp(buf2,buf1);if(ptr >0){printf(buffer2isgreaterthanbuffer1n);}if(ptr<0){printf(buffer2islessthanbuffer1n);}if(ptr==0){printf(buffer2equalsbuffer1n);}return0;}
Resultados em execução:
buffer2equalsbuffer1