Linux doesn't have mergesort, so just use qsort by (length, alphabetic)
This commit is contained in:
parent
2b7b4cd8d7
commit
b9440f4b8a
11
ask.c
11
ask.c
@ -297,9 +297,12 @@ static char *get_input(FILE *in, FILE *out, const char *prompt, const char *init
|
|||||||
return picked;
|
return picked;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int cmp_len(const void *a, const void *b)
|
static int cmp_len(const void *v1, const void *v2)
|
||||||
{
|
{
|
||||||
return (int)(strlen(*(char**)a) - strlen(*(char**)b));
|
char *s1 = *(char**)v1, *s2 = *(char**)v2;
|
||||||
|
size_t len1 = strlen(s1), len2 = strlen(s2);
|
||||||
|
if (len1 != len2) return (int)(len1 - len2);
|
||||||
|
return strcmp(s1, s2);
|
||||||
}
|
}
|
||||||
|
|
||||||
int main(int argc, char *argv[])
|
int main(int argc, char *argv[])
|
||||||
@ -404,8 +407,8 @@ int main(int argc, char *argv[])
|
|||||||
if (tcsetattr(fileno(tty_out), TCSAFLUSH, &bb_termios) == -1)
|
if (tcsetattr(fileno(tty_out), TCSAFLUSH, &bb_termios) == -1)
|
||||||
return 1;
|
return 1;
|
||||||
|
|
||||||
// Prefer shorter matches, but otherwise keep original order (mergesort is stable)
|
// Prefer shorter matches, but otherwise use alphabetic order
|
||||||
mergesort(opts, (size_t)nopts, sizeof(char*), cmp_len);
|
qsort(opts, (size_t)nopts, sizeof(char*), cmp_len);
|
||||||
char *output = get_input(tty_in, tty_out, prompt, query, nopts, opts);
|
char *output = get_input(tty_in, tty_out, prompt, query, nopts, opts);
|
||||||
|
|
||||||
fflush(tty_out);
|
fflush(tty_out);
|
||||||
|
Loading…
Reference in New Issue
Block a user