Lines Matching refs:str2
7700 /* str2 is the other; it must be the same length as str1 */
7703 /* length as str1 and str2, and each character of targ is in either */
7704 /* str1 or str2 in the corresponding position), or 0 otherwise */
7710 static Flag decBiStr(const char *targ, const char *str1, const char *str2) {
7711 for (;;targ++, str1++, str2++) {
7712 if (*targ!=*str1 && *targ!=*str2) return 0;