1 /* vi: set sw=4 ts=4: */
3 * Licensed under GPLv2, see file LICENSE in this tarball for details.
6 /* BB_AUDIT SUSv3 N/A -- Apparently a busybox (obsolete?) extension. */
10 /* This is a NOFORK applet. Be very careful! */
12 int length_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
13 int length_main(int argc, char **argv)
15 if ((argc != 2) || (**(++argv) == '-')) {
19 printf("%u\n", (unsigned)strlen(*argv));
21 return fflush(stdout);