hush/coreutils/length.c

15 lines
254 B
C
Raw Normal View History

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