summaryrefslogtreecommitdiff
path: root/release/src/router/busybox/coreutils/length.c
blob: bce43ab3ff7fdbc90684833eb4c53024d8816cbc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/* vi: set sw=4 ts=4: */

/* BB_AUDIT SUSv3 N/A -- Apparently a busybox (obsolete?) extension. */

#include <stdlib.h>
#include <string.h>
#include <stdio.h>
#include "busybox.h"

extern int length_main(int argc, char **argv)
{
	if ((argc != 2) ||  (**(++argv) == '-')) {
	    bb_show_usage();
	}

	bb_printf("%lu\n", (unsigned long)strlen(*argv));

	bb_fflush_stdout_and_exit(EXIT_SUCCESS);
}