blob: 46242b529eb7f5d9b37092b37c948f15179cf50e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#include "internal.h"
#include <stdlib.h>
#include <string.h>
#include <stdio.h>
extern int
length_main(int argc, char * * argv)
{
if ( **(argv+1) == '-' ) {
usage("length string\n");
}
printf("%d\n", strlen(argv[1]));
return( TRUE);
}
|