2000-02-09 01:28:47 +05:30
|
|
|
/* vi: set sw=4 ts=4: */
|
2000-09-26 03:15:58 +05:30
|
|
|
#include "busybox.h"
|
1999-10-05 21:54:54 +05:30
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
|
2000-07-15 04:58:47 +05:30
|
|
|
extern int length_main(int argc, char **argv)
|
|
|
|
{
|
|
|
|
if (argc != 2 || **(argv + 1) == '-')
|
|
|
|
usage(length_usage);
|
2000-04-21 06:56:49 +05:30
|
|
|
printf("%lu\n", (long)strlen(argv[1]));
|
2000-12-01 08:25:13 +05:30
|
|
|
return EXIT_SUCCESS;
|
1999-10-05 21:54:54 +05:30
|
|
|
}
|