busybox/length.c

16 lines
285 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) == '-' ) {
fprintf(stderr, "Usage: length string\n");
exit(FALSE);
}
printf("%d\n", strlen(argv[1]));
return( TRUE);
1999-10-05 21:54:54 +05:30
}