txt2 3206 ext/standard/string.c static void php_similar_str(const char *txt1, int len1, const char *txt2, int len2, int *pos1, int *pos2, int *max) txt2 3210 ext/standard/string.c char *end2 = (char *) txt2 + len2; txt2 3215 ext/standard/string.c for (q = (char *) txt2; q < end2; q++) { txt2 3220 ext/standard/string.c *pos2 = q - txt2; txt2 3229 ext/standard/string.c static int php_similar_char(const char *txt1, int len1, const char *txt2, int len2) txt2 3234 ext/standard/string.c php_similar_str(txt1, len1, txt2, len2, &pos1, &pos2, &max); txt2 3238 ext/standard/string.c txt2, pos2); txt2 3242 ext/standard/string.c txt2 + pos2 + max, len2 - pos2 - max);