hush/coreutils/length.c

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