More documentation updates, and minor fixes to make things sync
[oweals/busybox.git] / coreutils / length.c
1 /* vi: set sw=4 ts=4: */
2 #include "internal.h"
3 #include <stdlib.h>
4 #include <string.h>
5 #include <stdio.h>
6
7 extern int length_main(int argc, char **argv)
8 {
9         if (argc != 2 || **(argv + 1) == '-') {
10                 usage("length string\n");
11         }
12         printf("%d\n", strlen(argv[1]));
13         return (TRUE);
14 }