Lines Matching full:str2
7657 /* str2 is the other; it must be the same length as str1 */
7660 /* length as str1 and str2, and each character of targ is in either */
7661 /* str1 or str2 in the corresponding position), or 0 otherwise */
7667 static Flag decBiStr(const char *targ, const char *str1, const char *str2) {
7668 for (;;targ++, str1++, str2++) {
7669 if (*targ!=*str1 && *targ!=*str2) return 0;