diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2008-03-02 12:53:15 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2008-03-02 12:53:15 +0000 |
commit | d18f52bd182ac163a4ca87e7f8ffcb047fd063a3 (patch) | |
tree | 2b0804e1014e908150a20acc6bbccbd9b83cfce3 /libbb/bb_qsort.c | |
parent | fb29038b59fa639b79de99c4edddfa6462918765 (diff) | |
download | busybox-w32-d18f52bd182ac163a4ca87e7f8ffcb047fd063a3.tar.gz busybox-w32-d18f52bd182ac163a4ca87e7f8ffcb047fd063a3.tar.bz2 busybox-w32-d18f52bd182ac163a4ca87e7f8ffcb047fd063a3.zip |
actually add bb_qsort.c
*: s/Denis/Denys/
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 | } | ||