diff options
Diffstat (limited to 'length.c')
-rw-r--r-- | length.c | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/length.c b/length.c deleted file mode 100644 index 73becd2..0000000 --- a/length.c +++ /dev/null @@ -1,13 +0,0 @@ -/* vi: set sw=4 ts=4: */ -#include <stdlib.h> -#include <string.h> -#include <stdio.h> -#include "busybox.h" - -extern int length_main(int argc, char **argv) -{ - if (argc != 2 || **(argv + 1) == '-') - show_usage(); - printf("%lu\n", (long)strlen(argv[1])); - return EXIT_SUCCESS; -} |