stock comparatres(str1[], str2[], str3[]){ if(!strcmp(str1, str2)) { return 1; } else if(!strcmp(str1, str3)) { return 1; } return false;}