>>225
bool hoge(int ch) {
 return isupper(ch);
}

isupper の戻り値は真偽値(int 型の非0/0)だが bool ではない。
コンパイラによってはそのまま return すると文句言われる事がある。