Home
last modified time | relevance | path

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

/external/libedit/src/
Dfilecomplete.c285 size_t match_list_len, max_equal, which, i; in completion_matches() local
314 max_equal = strlen(prevstr); in completion_matches()
316 for (i = 0; i < max_equal && in completion_matches()
319 max_equal = i; in completion_matches()
322 retstr = el_malloc((max_equal + 1) * sizeof(*retstr)); in completion_matches()
327 (void)strncpy(retstr, match_list[1], max_equal); in completion_matches()
328 retstr[max_equal] = '\0'; in completion_matches()