annotate toys/other/count.c @ 656:6df4ccc0acbe

Regularize command headers, update links to standards documents.
author Rob Landley <rob@landley.net>
date Sat, 25 Aug 2012 18:08:51 -0500
parents 2986aa63a021
children 786841fdb1e0
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
233
d4176f3f3835 Zap toys/Config.in and instead create generated/Config.in from contents of
Rob Landley <rob@landley.net>
parents: 194
diff changeset
1 /* vi: set sw=4 ts=4:
d4176f3f3835 Zap toys/Config.in and instead create generated/Config.in from contents of
Rob Landley <rob@landley.net>
parents: 194
diff changeset
2 *
86
d2e38cb0b1cd I forgot to add count.c a while ago. (Memo to self: grab snapshots and build
Rob Landley <rob@landley.net>
parents:
diff changeset
3 * count.c - Progress indicator from stdin to stdout
194
30a6db5a95c2 Add comments about SUSv3 specs (or lack thereof).
Rob Landley <rob@landley.net>
parents: 186
diff changeset
4 *
233
d4176f3f3835 Zap toys/Config.in and instead create generated/Config.in from contents of
Rob Landley <rob@landley.net>
parents: 194
diff changeset
5 * Copyright 2002 Rob Landley <rob@landley.net>
d4176f3f3835 Zap toys/Config.in and instead create generated/Config.in from contents of
Rob Landley <rob@landley.net>
parents: 194
diff changeset
6
234
163498bf547b Move NEWTOY() list from end of toylist.h to generated/newtoys.h.
Rob Landley <rob@landley.net>
parents: 233
diff changeset
7 USE_COUNT(NEWTOY(count, NULL, TOYFLAG_USR|TOYFLAG_BIN))
163498bf547b Move NEWTOY() list from end of toylist.h to generated/newtoys.h.
Rob Landley <rob@landley.net>
parents: 233
diff changeset
8
233
d4176f3f3835 Zap toys/Config.in and instead create generated/Config.in from contents of
Rob Landley <rob@landley.net>
parents: 194
diff changeset
9 config COUNT
d4176f3f3835 Zap toys/Config.in and instead create generated/Config.in from contents of
Rob Landley <rob@landley.net>
parents: 194
diff changeset
10 bool "count"
d4176f3f3835 Zap toys/Config.in and instead create generated/Config.in from contents of
Rob Landley <rob@landley.net>
parents: 194
diff changeset
11 default y
d4176f3f3835 Zap toys/Config.in and instead create generated/Config.in from contents of
Rob Landley <rob@landley.net>
parents: 194
diff changeset
12 help
d4176f3f3835 Zap toys/Config.in and instead create generated/Config.in from contents of
Rob Landley <rob@landley.net>
parents: 194
diff changeset
13 usage: count
d4176f3f3835 Zap toys/Config.in and instead create generated/Config.in from contents of
Rob Landley <rob@landley.net>
parents: 194
diff changeset
14
d4176f3f3835 Zap toys/Config.in and instead create generated/Config.in from contents of
Rob Landley <rob@landley.net>
parents: 194
diff changeset
15 Copy stdin to stdout, displaying simple progress indicator to stderr.
d4176f3f3835 Zap toys/Config.in and instead create generated/Config.in from contents of
Rob Landley <rob@landley.net>
parents: 194
diff changeset
16 */
86
d2e38cb0b1cd I forgot to add count.c a while ago. (Memo to self: grab snapshots and build
Rob Landley <rob@landley.net>
parents:
diff changeset
17
d2e38cb0b1cd I forgot to add count.c a while ago. (Memo to self: grab snapshots and build
Rob Landley <rob@landley.net>
parents:
diff changeset
18 #include "toys.h"
d2e38cb0b1cd I forgot to add count.c a while ago. (Memo to self: grab snapshots and build
Rob Landley <rob@landley.net>
parents:
diff changeset
19
186
25447caf1b4b Change command main() functions to return void, and exit(toys.exitval) from
Rob Landley <rob@landley.net>
parents: 86
diff changeset
20 void count_main(void)
86
d2e38cb0b1cd I forgot to add count.c a while ago. (Memo to self: grab snapshots and build
Rob Landley <rob@landley.net>
parents:
diff changeset
21 {
d2e38cb0b1cd I forgot to add count.c a while ago. (Memo to self: grab snapshots and build
Rob Landley <rob@landley.net>
parents:
diff changeset
22 uint64_t size = 0;
d2e38cb0b1cd I forgot to add count.c a while ago. (Memo to self: grab snapshots and build
Rob Landley <rob@landley.net>
parents:
diff changeset
23 int len;
550
b2194045c40e Remove "feature test macros", replace non-portable fdprintf() with standard fprintf().
Rob Landley <rob@landley.net>
parents: 314
diff changeset
24 char buf[32];
86
d2e38cb0b1cd I forgot to add count.c a while ago. (Memo to self: grab snapshots and build
Rob Landley <rob@landley.net>
parents:
diff changeset
25
d2e38cb0b1cd I forgot to add count.c a while ago. (Memo to self: grab snapshots and build
Rob Landley <rob@landley.net>
parents:
diff changeset
26 for (;;) {
d2e38cb0b1cd I forgot to add count.c a while ago. (Memo to self: grab snapshots and build
Rob Landley <rob@landley.net>
parents:
diff changeset
27 len = xread(0, toybuf, sizeof(toybuf));
d2e38cb0b1cd I forgot to add count.c a while ago. (Memo to self: grab snapshots and build
Rob Landley <rob@landley.net>
parents:
diff changeset
28 if (!len) break;
d2e38cb0b1cd I forgot to add count.c a while ago. (Memo to self: grab snapshots and build
Rob Landley <rob@landley.net>
parents:
diff changeset
29 size += len;
314
5ab9d0e5e0f8 Fix giant glaring thinko.
Rob Landley <rob@landley.net>
parents: 234
diff changeset
30 xwrite(1, toybuf, len);
550
b2194045c40e Remove "feature test macros", replace non-portable fdprintf() with standard fprintf().
Rob Landley <rob@landley.net>
parents: 314
diff changeset
31 xwrite(2, buf, sprintf(buf, "%"PRIu64" bytes\r", size));
86
d2e38cb0b1cd I forgot to add count.c a while ago. (Memo to self: grab snapshots and build
Rob Landley <rob@landley.net>
parents:
diff changeset
32 }
550
b2194045c40e Remove "feature test macros", replace non-portable fdprintf() with standard fprintf().
Rob Landley <rob@landley.net>
parents: 314
diff changeset
33 xwrite(2, "\n", 1);
86
d2e38cb0b1cd I forgot to add count.c a while ago. (Memo to self: grab snapshots and build
Rob Landley <rob@landley.net>
parents:
diff changeset
34 }