2000-02-08 19:58:47 +00:00
|
|
|
/* vi: set sw=4 ts=4: */
|
1999-10-05 16:24:54 +00:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <stdio.h>
|
2001-02-20 06:14:08 +00:00
|
|
|
#include "busybox.h"
|
1999-10-05 16:24:54 +00:00
|
|
|
|
2000-07-14 23:28:47 +00:00
|
|
|
extern int length_main(int argc, char **argv)
|
|
|
|
{
|
|
|
|
if (argc != 2 || **(argv + 1) == '-')
|
2001-02-14 21:23:06 +00:00
|
|
|
show_usage();
|
2000-04-21 01:26:49 +00:00
|
|
|
printf("%lu\n", (long)strlen(argv[1]));
|
2000-12-01 02:55:13 +00:00
|
|
|
return EXIT_SUCCESS;
|
1999-10-05 16:24:54 +00:00
|
|
|
}
|