busybox/length.c

15 lines
254 B
C
Raw Normal View History

1999-10-05 21:54:54 +05:30
#include "internal.h"
#include <stdlib.h>
#include <string.h>
#include <stdio.h>
1999-10-19 03:01:00 +05:30
extern int
length_main(int argc, char * * argv)
1999-10-05 21:54:54 +05:30
{
1999-10-19 03:01:00 +05:30
if ( **(argv+1) == '-' ) {
1999-10-19 03:58:26 +05:30
usage("length string\n");
1999-10-19 03:01:00 +05:30
}
printf("%d\n", strlen(argv[1]));
return( TRUE);
1999-10-05 21:54:54 +05:30
}