Home
last modified time | relevance | path

Searched refs:max_equal (Results 1 – 1 of 1) sorted by relevance

/freebsd/contrib/libedit/
H A Dfilecomplete.c471 size_t match_list_len, max_equal, which, i; in completion_matches() local
500 max_equal = strlen(prevstr); in completion_matches()
502 for (i = 0; i < max_equal && in completion_matches()
505 max_equal = i; in completion_matches()
508 retstr = el_calloc(max_equal + 1, sizeof(*retstr)); in completion_matches()
513 (void)strlcpy(retstr, match_list[1], max_equal + 1); in completion_matches()