summary refs log tree commit diff
path: root/bin/typo.c
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2017-09-14 21:13:09 -0400
committerJune McEnroe <june@causal.agency>2017-09-14 21:13:09 -0400
commit78505dcfd637f0071635522642d19163db8b344d (patch)
tree37ad2435e3085f53d578535d88bff48b35c94926 /bin/typo.c
parentAdd .gitignore target to bins Makefile (diff)
downloadsrc-78505dcfd637f0071635522642d19163db8b344d.tar.gz
src-78505dcfd637f0071635522642d19163db8b344d.zip
Count 5 letters as a word
Diffstat (limited to '')
-rw-r--r--bin/typo.c6
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;
         }
     }