diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2016-11-23 14:54:38 +0100 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2016-11-23 14:54:38 +0100 |
commit | 73f743a381dc389287d2d0e56a2b7988f67c0bfc (patch) | |
tree | 9faae2512f091fd60aa5cc34c242ffab55543e2b /coreutils/length.c.disabled | |
parent | 7caf1369f5a84196d8e1b75f2febbc63d963a548 (diff) | |
download | busybox-73f743a381dc389287d2d0e56a2b7988f67c0bfc.tar.gz |
Remove remnants of disabled "length" applet
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'coreutils/length.c.disabled')
-rw-r--r-- | coreutils/length.c.disabled | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/coreutils/length.c.disabled b/coreutils/length.c.disabled deleted file mode 100644 index aee898d22..000000000 --- a/coreutils/length.c.disabled +++ /dev/null @@ -1,31 +0,0 @@ -/* vi: set sw=4 ts=4: */ -/* - * Licensed under GPLv2, see file LICENSE in this source tree. - */ - -/* BB_AUDIT SUSv3 N/A -- Apparently a busybox (obsolete?) extension. */ - -//usage:#define length_trivial_usage -//usage: "STRING" -//usage:#define length_full_usage "\n\n" -//usage: "Print STRING's length" -//usage: -//usage:#define length_example_usage -//usage: "$ length Hello\n" -//usage: "5\n" - -#include "libbb.h" - -/* This is a NOFORK applet. Be very careful! */ - -int length_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; -int length_main(int argc, char **argv) -{ - if ((argc != 2) || (**(++argv) == '-')) { - bb_show_usage(); - } - - printf("%u\n", (unsigned)strlen(*argv)); - - return fflush_all(); -} |