Home
last modified time | relevance | path

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

/freebsd-12-stable/contrib/libedit/
Dfilecomplete.c468 size_t match_list_len, max_equal, which, i; in completion_matches() local
497 max_equal = strlen(prevstr); in completion_matches()
499 for (i = 0; i < max_equal && in completion_matches()
502 max_equal = i; in completion_matches()
505 retstr = el_calloc(max_equal + 1, sizeof(*retstr)); in completion_matches()
510 (void)strlcpy(retstr, match_list[1], max_equal + 1); in completion_matches()