Searched refs:txt2 (Results 1 – 1 of 1) sorted by relevance
/php-src/ext/standard/ |
H A D | string.c | 3585 static void php_similar_str(const char *txt1, size_t len1, const char *txt2, size_t len2, size_t *p… argument 3589 const char *end2 = (char *) txt2 + len2; 3595 for (q = (char *) txt2; q < end2; q++) { 3601 *pos2 = q - txt2; 3609 static size_t php_similar_char(const char *txt1, size_t len1, const char *txt2, size_t len2) argument 3614 php_similar_str(txt1, len1, txt2, len2, &pos1, &pos2, &max, &count); 3618 txt2, pos2); 3622 txt2 + pos2 + max, len2 - pos2 - max);
|
Completed in 20 milliseconds