diff options
author | June McEnroe <june@causal.agency> | 2017-09-14 21:13:09 -0400 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2017-09-14 21:13:09 -0400 |
commit | 78505dcfd637f0071635522642d19163db8b344d (patch) | |
tree | 37ad2435e3085f53d578535d88bff48b35c94926 | |
parent | Add .gitignore target to bins Makefile (diff) | |
download | src-78505dcfd637f0071635522642d19163db8b344d.tar.gz src-78505dcfd637f0071635522642d19163db8b344d.zip |
Count 5 letters as a word
-rw-r--r-- | bin/typo.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/bin/typo.c b/bin/typo.c index 934be50d..66b9e007 100644 --- a/bin/typo.c +++ b/bin/typo.c @@ -56,12 +56,12 @@ int main() { time_t start = time(NULL); if (start < 0) err(EX_OSERR, "time"); - int wordCount = 0; + int letterCount = 0; for (;;) { time_t now = time(NULL); if (now < 0) err(EX_OSERR, "time"); - double wpm = (double)wordCount / difftime(now, start) * 60; + double wpm = (double)letterCount / 5.0 / difftime(now, start) * 60.0; char *wpmDisplay; int len = asprintf(&wpmDisplay, "%.2f WPM ", wpm); @@ -79,7 +79,7 @@ int main() { for (size_t i = 0; i < targetsLen; ++i) { if (strcmp(word, targets[i])) continue; setTarget(i); - wordCount++; + letterCount += strlen(word); break; } } |