actually add bb_qsort.c
authorDenis Vlasenko <vda.linux@googlemail.com>
Sun, 2 Mar 2008 12:53:15 +0000 (12:53 -0000)
committerDenis Vlasenko <vda.linux@googlemail.com>
Sun, 2 Mar 2008 12:53:15 +0000 (12:53 -0000)
*: s/Denis/Denys/

21 files changed:
coreutils/od_bloaty.c
ipsvd/ipsvd_perhost.c
ipsvd/ipsvd_perhost.h
ipsvd/tcpudp.c
libbb/bb_basename.c
libbb/bb_qsort.c [new file with mode: 0644]
libbb/makedev.c
libbb/printable.c
libbb/signals.c
libbb/time.c
libbb/udp_io.c
libbb/xfuncs.c
networking/isrv.c
networking/isrv.h
networking/isrv_identd.c
runit/chpst.c
runit/runit_lib.c
runit/runsv.c
runit/runsvdir.c
runit/sv.c
runit/svlogd.c

index 501a92b383eb98adba60a32867b77ba4174fb91a..a083114c9165d1921bfba483b62d35288132b72c 100644 (file)
@@ -17,7 +17,7 @@
 
 /* Written by Jim Meyering.  */
 
-/* Busyboxed by Denis Vlasenko
+/* Busyboxed by Denys Vlasenko
 
 Based on od.c from coreutils-5.2.1
 Top bloat sources:
index d4c0d795fca062b3f7eaad0564b6512dae08a069..6075c0a3a9ccb73d68dc8eae05b65bac46f21ce8 100644 (file)
@@ -2,7 +2,7 @@
  * which are released into public domain by the author.
  * Homepage: http://smarden.sunsite.dk/ipsvd/
  *
- * Copyright (C) 2007 Denis Vlasenko.
+ * Copyright (C) 2007 Denys Vlasenko.
  *
  * Licensed under GPLv2, see file LICENSE in this tarball for details.
  */
index afe2c296c5b3ed18644cb77acaa808a56da30c09..9fc8cee6133f89d3f58cc2bfc0e58ad1a5f6a910 100644 (file)
@@ -2,7 +2,7 @@
  * which are released into public domain by the author.
  * Homepage: http://smarden.sunsite.dk/ipsvd/
  *
- * Copyright (C) 2007 Denis Vlasenko.
+ * Copyright (C) 2007 Denys Vlasenko.
  *
  * Licensed under GPLv2, see file LICENSE in this tarball for details.
  */
index b3a2c7a77702c45dd3629bdad52245a6002e712c..cb57e598ad390c481b9aef4c61bc4d0453e30176 100644 (file)
@@ -2,7 +2,7 @@
  * which are released into public domain by the author.
  * Homepage: http://smarden.sunsite.dk/ipsvd/
  *
- * Copyright (C) 2007 Denis Vlasenko.
+ * Copyright (C) 2007 Denys Vlasenko.
  *
  * Licensed under GPLv2, see file LICENSE in this tarball for details.
  */
index e19156d5c05b95d76df3681cb83b3660d2990ec6..e6832f8ef5778b12914bbfad721f510a58d1d6b1 100644 (file)
@@ -2,7 +2,7 @@
 /*
  * Utility routines.
  *
- * Copyright (C) 2007 Denis Vlasenko
+ * Copyright (C) 2007 Denys Vlasenko
  *
  * Licensed under GPL version 2, see file LICENSE in this tarball for details.
  */
diff --git a/libbb/bb_qsort.c b/libbb/bb_qsort.c
new file mode 100644 (file)
index 0000000..e8673ab
--- /dev/null
@@ -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);
+}
index 81cd82bafae7e75544c8c3f0af7b54fce04396d6..efd51224f6f5c8b8283bc14231ea61ce1f35e10d 100644 (file)
@@ -1,7 +1,7 @@
 /*
  * Utility routines.
  *
- * Copyright (C) 2006 Denis Vlasenko
+ * Copyright (C) 2006 Denys Vlasenko
  *
  * Licensed under GPL version 2, see file LICENSE in this tarball for details.
  */
index 2420a91f0bf61c3afa0b133b8d908c4366d7b411..676758a2b8070853104c399dffd5e63c020b849d 100644 (file)
@@ -2,7 +2,7 @@
 /*
  * Utility routines.
  *
- * Copyright (C) 2007 Denis Vlasenko
+ * Copyright (C) 2007 Denys Vlasenko
  *
  * Licensed under GPL version 2, see file LICENSE in this tarball for details.
  */
index b46b595da33471ac9b6af844a8a9556612f12a23..1929cb88e7b7cfe0ee595334a276184df320929d 100644 (file)
@@ -4,7 +4,7 @@
  *
  * Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org>
  * Copyright (C) 2006 Rob Landley
- * Copyright (C) 2006 Denis Vlasenko
+ * Copyright (C) 2006 Denys Vlasenko
  *
  * Licensed under GPL version 2, see file LICENSE in this tarball for details.
  */
index 525032d4dbc257d0b4aea92f118457616bcfd005..3aa0ee318f4d728f3474668daa42440af599bf70 100644 (file)
@@ -2,7 +2,7 @@
 /*
  * Utility routines.
  *
- * Copyright (C) 2007 Denis Vlasenko
+ * Copyright (C) 2007 Denys Vlasenko
  *
  * Licensed under GPL version 2, see file LICENSE in this tarball for details.
  */
index 7e48d32f3389b477681190ce473287d987680296..2f02a138b4747f6963adc1b6da7d43babfeeae47 100644 (file)
@@ -2,7 +2,7 @@
 /*
  * Utility routines.
  *
- * Copyright (C) 2007 Denis Vlasenko
+ * Copyright (C) 2007 Denys Vlasenko
  *
  * Licensed under GPL version 2, see file LICENSE in this tarball for details.
  */
index 18e696a7a89ea5e48ee07a0a28c62fa277d55f7a..ca7f94173b9364ee2ad06ec93b1779ee2edcd4cf 100644 (file)
@@ -4,7 +4,7 @@
  *
  * Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org>
  * Copyright (C) 2006 Rob Landley
- * Copyright (C) 2006 Denis Vlasenko
+ * Copyright (C) 2006 Denys Vlasenko
  *
  * Licensed under GPL version 2, see file LICENSE in this tarball for details.
  */
index 080c60fbdfaab03a968a492752f270a2c7c20d55..66bb3718ea54e92a95ecfbbcef090481f2db68d7 100644 (file)
@@ -3,7 +3,7 @@
  * Generic non-forking server infrastructure.
  * Intended to make writing telnetd-type servers easier.
  *
- * Copyright (C) 2007 Denis Vlasenko
+ * Copyright (C) 2007 Denys Vlasenko
  *
  * Licensed under GPL version 2, see file LICENSE in this tarball for details.
  */
index c786770a627a621ea87a85454999f8a8e23a4632..370ed904389908b4b5fb6343e8ad8a0cfc0a3c37 100644 (file)
@@ -3,7 +3,7 @@
  * Generic non-forking server infrastructure.
  * Intended to make writing telnetd-type servers easier.
  *
- * Copyright (C) 2007 Denis Vlasenko
+ * Copyright (C) 2007 Denys Vlasenko
  *
  * Licensed under GPL version 2, see file LICENSE in this tarball for details.
  */
index dbdecba24b6b27278cb4158c3927371e6182b29b..33338572d986e094981a242e7cec39a9e5f2c68c 100644 (file)
@@ -2,7 +2,7 @@
 /*
  * Fake identd server.
  *
- * Copyright (C) 2007 Denis Vlasenko
+ * Copyright (C) 2007 Denys Vlasenko
  *
  * Licensed under GPL version 2, see file LICENSE in this tarball for details.
  */
index 7b70a4d5ae8ec427d7f3cc0b75dba243ae8f8610..89d8ce4435df29d9124e52d75d67cc7267095b5d 100644 (file)
@@ -25,7 +25,7 @@ OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
 ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 */
 
-/* Busyboxed by Denis Vlasenko <vda.linux@googlemail.com> */
+/* Busyboxed by Denys Vlasenko <vda.linux@googlemail.com> */
 /* Dependencies on runit_lib.c removed */
 
 #include "libbb.h"
index bedd5401f9261e9b8d415eef1bd8e7077faf2596..f33619d28fc22dc62c8c67095a4c53b7ba3a988d 100644 (file)
@@ -25,7 +25,7 @@ OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
 ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 */
 
-/* Busyboxed by Denis Vlasenko <vda.linux@googlemail.com> */
+/* Busyboxed by Denys Vlasenko <vda.linux@googlemail.com> */
 /* Collected into one file from runit's many tiny files */
 /* TODO: review, eliminate unneeded stuff, move good stuff to libbb */
 
index 02dcf50cae94619e62b1d3bd75ca04fc1a5d22cf..5d4e1584e9e57b7ede49aa86943268b704a96924 100644 (file)
@@ -25,7 +25,7 @@ OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
 ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 */
 
-/* Busyboxed by Denis Vlasenko <vda.linux@googlemail.com> */
+/* Busyboxed by Denys Vlasenko <vda.linux@googlemail.com> */
 /* TODO: depends on runit_lib.c - review and reduce/eliminate */
 
 #include <sys/poll.h>
index 3ff1d4c23170619c4cc483cd36903a512fdb874c..0ab672ef4f81526b9b949e5db87e8a1e32335b3f 100644 (file)
@@ -25,7 +25,7 @@ OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
 ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 */
 
-/* Busyboxed by Denis Vlasenko <vda.linux@googlemail.com> */
+/* Busyboxed by Denys Vlasenko <vda.linux@googlemail.com> */
 /* TODO: depends on runit_lib.c - review and reduce/eliminate */
 
 #include <sys/poll.h>
index a89e2443981de07c47a144f6f82b416a85e50388..141f7a8bc3ae376a1c783824a4db2d5faff162cf 100644 (file)
@@ -150,7 +150,7 @@ Exit Codes
     is 99. sv exits 100 on error.
 */
 
-/* Busyboxed by Denis Vlasenko <vda.linux@googlemail.com> */
+/* Busyboxed by Denys Vlasenko <vda.linux@googlemail.com> */
 /* TODO: depends on runit_lib.c - review and reduce/eliminate */
 
 #include <sys/poll.h>
index d7da180930e0ef9353d20374b2e5ba9f51f3fda2..c69cb545cd158533c38ec4873af81c8ca4e7a002 100644 (file)
@@ -25,7 +25,7 @@ OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
 ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 */
 
-/* Busyboxed by Denis Vlasenko <vda.linux@googlemail.com> */
+/* Busyboxed by Denys Vlasenko <vda.linux@googlemail.com> */
 /* TODO: depends on runit_lib.c - review and reduce/eliminate */
 
 #include <sys/poll.h>