diff options
Diffstat (limited to 'libbb/bb_qsort.c')
-rw-r--r-- | libbb/bb_qsort.c | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/libbb/bb_qsort.c b/libbb/bb_qsort.c new file mode 100644 index 000000000..e8673abf9 --- /dev/null +++ b/libbb/bb_qsort.c | |||
@@ -0,0 +1,20 @@ | |||
1 | /* vi: set sw=4 ts=4: */ | ||
2 | /* | ||
3 | * Wrapper for common string vector sorting operation | ||
4 | * | ||
5 | * Copyright (c) 2008 Denys Vlasenko | ||
6 | * | ||
7 | * Licensed under GPLv2, see file LICENSE in this tarball for details. | ||
8 | */ | ||
9 | |||
10 | #include "libbb.h" | ||
11 | |||
12 | int bb_pstrcmp(const void *a, const void *b) | ||
13 | { | ||
14 | return strcmp(*(char**)a, *(char**)b); | ||
15 | } | ||
16 | |||
17 | void qsort_string_vector(char **sv, unsigned count) | ||
18 | { | ||
19 | qsort(sv, count, sizeof(char*), bb_pstrcmp); | ||
20 | } | ||