2000-02-09 01:28:47 +05:30
|
|
|
/* vi: set sw=4 ts=4: */
|
1999-10-05 21:54:54 +05:30
|
|
|
#include "internal.h"
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
|
2000-02-09 01:28:47 +05:30
|
|
|
extern int length_main(int argc, char **argv)
|
1999-10-05 21:54:54 +05:30
|
|
|
{
|
2000-02-09 01:28:47 +05:30
|
|
|
if (argc != 2 || **(argv + 1) == '-') {
|
2000-05-13 01:11:47 +05:30
|
|
|
usage("length STRING\n"
|
|
|
|
#ifndef BB_FEATURE_TRIVIAL_HELP
|
|
|
|
"\nPrints out the length of the specified STRING.\n"
|
|
|
|
#endif
|
|
|
|
);
|
2000-02-09 01:28:47 +05:30
|
|
|
}
|
2000-04-21 06:56:49 +05:30
|
|
|
printf("%lu\n", (long)strlen(argv[1]));
|
2000-02-09 01:28:47 +05:30
|
|
|
return (TRUE);
|
1999-10-05 21:54:54 +05:30
|
|
|
}
|