c primer plus程序清单7.7的问题

#include
#include
#include
#define STOP '|'
int main(void)
{
char c;
char prev;
long n_chars = 0L;
int n_lines = 0;
int n_words = 0;
int p_lines = 0;
bool inword = false;

printf("enter next to be analyzed (| to terminate):\n");
prev = '\n';
while ((c = getchar()) != STOP)
{
    n_chars++;
    if (c == '\n')
        n_lines++;
    if (!isspace(c) && !inword)
    {
        inword = true;
        n_words++;
    }
    if (isspace(c) && inword)
        inword = false;
    prev = c;
}
if (prev != '\n')
    p_lines = 1;
printf("characters=%ld,words=%d,lines=%d,",
    n_chars, n_words, n_lines);
printf("partial lines=%d\n", p_lines);

getchar();
getchar();
return 0;

}
第二个if那里,!inword为假,那为什么要把 bool inword声明为false?我觉得把inword声明为true更方便呀,intword声明为false,然后!inword也是false,这样或许会让人产生理解错误?

inword表示是否在单词里面,最一开始为false,所以收到第一个不是空格的字符时,单词数加1,并且把inword标记改为true,这样下一个不是空格的字符到来单词球就不会加1,空格到来的话,表示一个单词输入完毕,把inword改为false表示不在单词里面, 总之这段程序应该是统计输入的单词数的吧