bore

basic core utilities (PD)
git clone git://bvnf.space/bore.git
Log | Files | Refs | README

commit a264025769addc04d735447dad19e2f176fafdb7
parent 13d49d2d94041002d509994a2f7fe7908aea4f64
Author: phoebos <ben@bvnf.space>
Date:   Tue, 11 Oct 2022 11:15:03 +0100

wc: style

Diffstat:
Mwc.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/wc.c b/wc.c @@ -53,7 +53,7 @@ wc(struct count *ct, FILE *f) { if (c == '\n') ++ct->l; if (isspace(c)) - in_word=0; + in_word = 0; else if (in_word == 0) { in_word = 1; ++ct->w;