mirror of
https://github.com/sheumann/hush.git
synced 2024-11-04 14:05:24 +00:00
b0e9a709ba
-Erik
15 lines
254 B
C
15 lines
254 B
C
#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);
|
|
}
|