mirror of
https://github.com/sheumann/hush.git
synced 2024-10-31 19:04:47 +00:00
b6adbf1be2
*: s/include "busybox.h"/include "libbb.h"
20 lines
384 B
C
20 lines
384 B
C
/* vi: set sw=4 ts=4: */
|
|
|
|
/* BB_AUDIT SUSv3 N/A -- Apparently a busybox (obsolete?) extension. */
|
|
|
|
#include "libbb.h"
|
|
|
|
/* This is a NOFORK applet. Be very careful! */
|
|
|
|
int length_main(int argc, char **argv);
|
|
int length_main(int argc, char **argv)
|
|
{
|
|
if ((argc != 2) || (**(++argv) == '-')) {
|
|
bb_show_usage();
|
|
}
|
|
|
|
printf("%u\n", (unsigned)strlen(*argv));
|
|
|
|
return fflush(stdout);
|
|
}
|