summaryrefslogtreecommitdiff
path: root/sys/src/cmd/upas/fs/extra/paw.c
blob: 6d3a5e484b69145846223cac2572bdc609222876 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#include<u.h>
#include<libc.h>
#include<bio.h>

void
main(void)
{
	char *f[10], *s;
	vlong sum;
	Biobuf b;

	sum = 0;
	Binit(&b, 0, OREAD);

	while(s = Brdstr(&b, '\n', 1)){
		if(getfields(s, f, nelem(f), 1, " ") > 2)
			sum += strtoul(f[2], 0, 0);
		free(s);
	}
	Bterm(&b);
	print("%lld\n", sum);
	exits("");
}