aboutsummaryrefslogtreecommitdiff
path: root/toys/wc.c
diff options
context:
space:
mode:
authorRob Landley <rob@landley.net>2012-08-25 14:25:22 -0500
committerRob Landley <rob@landley.net>2012-08-25 14:25:22 -0500
commit3a9241add947cb6d24b5de7a8927517426a78795 (patch)
treed122ab6570439cd6b17c7d73ed8d4e085e0b8a95 /toys/wc.c
parent689f095bc976417bf50810fe59a3b3ac32b21105 (diff)
downloadtoybox-3a9241add947cb6d24b5de7a8927517426a78795.tar.gz
Move commands into "posix", "lsb", and "other" menus/directories.
Diffstat (limited to 'toys/wc.c')
-rw-r--r--toys/wc.c60
1 files changed, 0 insertions, 60 deletions
diff --git a/toys/wc.c b/toys/wc.c
deleted file mode 100644
index 17801188..00000000
--- a/toys/wc.c
+++ /dev/null
@@ -1,60 +0,0 @@
-/* vi: set sw=4 ts=4:
- *
- * wc.c - Word count
- *
- * Copyright 2011 Rob Landley <rob@landley.net>
- *
- * See http://opengroup.org/onlinepubs/9699919799/utilities/wc.html
-
-USE_WC(NEWTOY(wc, "cwl", TOYFLAG_USR|TOYFLAG_BIN))
-
-config WC
- bool "wc"
- default y
- help
- usage: wc -lwc [FILE...]
-
- Count lines, words, and characters in input.
-
- -l show lines
- -w show words
- -c show characters
-
- By default outputs lines, words, characters, and filename for each
- argument (or from stdin if none).
-*/
-
-#include "toys.h"
-
-static void do_wc(int fd, char *name)
-{
- int i, len;
- unsigned long word=0, lengths[]={0,0,0};
-
- for (;;) {
- len = read(fd, toybuf, sizeof(toybuf));
- if (len<0) {
- perror_msg("%s",name);
- toys.exitval = EXIT_FAILURE;
- }
- if (len<1) break;
- for (i=0; i<len; i++) {
- if (toybuf[i]==10) lengths[0]++;
- if (isspace(toybuf[i])) word=0;
- else {
- if (!word) lengths[1]++;
- word=1;
- }
- lengths[2]++;
- }
- }
- for (i=0; i<3; i++)
- if (!toys.optflags || (toys.optflags&(1<<i)))
- printf("%ld ", lengths[i]);
- printf("%s\n", (!toys.optflags && strcmp(name,"-")) ? name : "");
-}
-
-void wc_main(void)
-{
- loopfiles(toys.optargs, do_wc);
-}