* @return @c True if character @a c is a nice character (printable or control). * @c False otherwise. */
| 990 | * @c False otherwise. |
| 991 | */ |
| 992 | bool isNiceCharacter(unsigned char c) { |
| 993 | return isPrintableChar(c) || isContolCharacter(c); |
| 994 | } |
| 995 | |
| 996 | /** |
| 997 | * @brief Does the provided string seem nice, i.e ratio of printable characters |