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) |
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 @@ +/* vi: set sw=4 ts=4: */ +/* + * Wrapper for common string vector sorting operation + * + * Copyright (c) 2008 Denys Vlasenko + * + * Licensed under GPLv2, see file LICENSE in this tarball for details. + */ + +#include "libbb.h" + +int bb_pstrcmp(const void *a, const void *b) +{ + return strcmp(*(char**)a, *(char**)b); +} + +void qsort_string_vector(char **sv, unsigned count) +{ + qsort(sv, count, sizeof(char*), bb_pstrcmp); +} |