diff options
author | June McEnroe <programble@gmail.com> | 2017-09-14 21:13:09 -0400 |
---|---|---|
committer | June McEnroe <programble@gmail.com> | 2017-09-14 21:13:09 -0400 |
commit | 8d5614a23aafce7e16b10efa6b4b653b43d25d92 (patch) | |
tree | 91cbdcb5c99d603041d6f691d88c3d76480b7426 /bin | |
parent | Add .gitignore target to bins Makefile (diff) | |
download | src-8d5614a23aafce7e16b10efa6b4b653b43d25d92.tar.gz src-8d5614a23aafce7e16b10efa6b4b653b43d25d92.zip |
Count 5 letters as a word
Diffstat (limited to '')
-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 e08cb723..468fcbe5 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; } } |