HomeSort by: relevance | last modified time | path
    Searched defs:retstr (Results 1 - 2 of 2) sorted by relevancy

  /src/lib/libedit/
filecomplete.c 470 char **match_list = NULL, *retstr, *prevstr; local in function:completion_matches
476 while ((retstr = (*genfunc) (text, (int)matches)) != NULL) {
491 match_list[++matches] = retstr;
508 retstr = el_calloc(max_equal + 1, sizeof(*retstr));
509 if (retstr == NULL) {
513 (void)strlcpy(retstr, match_list[1], max_equal + 1);
514 match_list[0] = retstr;
filecomplete.c 470 char **match_list = NULL, *retstr, *prevstr; local in function:completion_matches
476 while ((retstr = (*genfunc) (text, (int)matches)) != NULL) {
491 match_list[++matches] = retstr;
508 retstr = el_calloc(max_equal + 1, sizeof(*retstr));
509 if (retstr == NULL) {
513 (void)strlcpy(retstr, match_list[1], max_equal + 1);
514 match_list[0] = retstr;

Completed in 22 milliseconds