sbase/wc.c

106 lines
1.6 KiB
C
Raw Normal View History

2011-05-22 21:36:34 -04:00
/* See LICENSE file for copyright and license details. */
#include <ctype.h>
#include <stdbool.h>
#include <stdio.h>
#include <stdlib.h>
2011-05-23 20:13:34 -04:00
#include <unistd.h>
2011-05-22 21:36:34 -04:00
#include "util.h"
static void output(const char *, long, long, long);
static void wc(FILE *, const char *);
static bool lflag = false;
static bool wflag = false;
static char cmode = 0;
static long tc = 0, tl = 0, tw = 0;
static void
usage(void)
{
eprintf("usage: %s [-clmw] [files...]\n", argv0);
}
2011-05-22 21:36:34 -04:00
int
main(int argc, char *argv[])
{
FILE *fp;
2013-03-10 20:12:10 -04:00
int i;
2013-03-10 20:12:10 -04:00
ARGBEGIN {
case 'c':
cmode = 'c';
break;
case 'm':
cmode = 'm';
break;
case 'l':
lflag = true;
break;
case 'w':
wflag = true;
break;
default:
usage();
2013-03-10 20:12:10 -04:00
} ARGEND;
2013-03-10 20:12:10 -04:00
if (argc == 0) {
2011-05-22 21:36:34 -04:00
wc(stdin, NULL);
2013-03-10 20:12:10 -04:00
} else {
for (i = 0; i < argc; i++) {
if (!(fp = fopen(argv[i], "r"))) {
weprintf("fopen %s:", argv[i]);
continue;
}
2013-03-10 20:12:10 -04:00
wc(fp, argv[i]);
fclose(fp);
}
if (argc > 1)
output("total", tc, tl, tw);
2011-05-22 21:36:34 -04:00
}
2014-10-02 18:46:04 -04:00
return 0;
2011-05-22 21:36:34 -04:00
}
void
output(const char *str, long nc, long nl, long nw)
{
bool noflags = !cmode && !lflag && !wflag;
if (lflag || noflags)
2011-05-22 21:36:34 -04:00
printf(" %5ld", nl);
if (wflag || noflags)
2011-05-22 21:36:34 -04:00
printf(" %5ld", nw);
if (cmode || noflags)
2011-05-22 21:36:34 -04:00
printf(" %5ld", nc);
if (str)
2011-05-22 21:36:34 -04:00
printf(" %s", str);
2011-05-25 23:01:20 -04:00
putchar('\n');
2011-05-22 21:36:34 -04:00
}
void
wc(FILE *fp, const char *str)
{
bool word = false;
2013-07-20 07:09:42 -04:00
int c;
2011-05-22 21:36:34 -04:00
long nc = 0, nl = 0, nw = 0;
while ((c = getc(fp)) != EOF) {
if (cmode != 'm' || UTF8_POINT(c))
2011-05-22 21:36:34 -04:00
nc++;
if (c == '\n')
2011-05-22 21:36:34 -04:00
nl++;
if (!isspace(c))
2011-05-22 21:36:34 -04:00
word = true;
else if (word) {
2011-05-22 21:36:34 -04:00
word = false;
nw++;
}
}
if (word)
nw++;
2011-05-22 21:36:34 -04:00
tc += nc;
tl += nl;
tw += nw;
output(str, nc, nl, nw);
}