* @brief Returns @c true if @c is non-printable character, @c false otherwise. */
| 34 | * @brief Returns @c true if @c is non-printable character, @c false otherwise. |
| 35 | */ |
| 36 | bool isNonprintableChar(unsigned char c) { |
| 37 | return !isPrintableChar(c); |
| 38 | } |
| 39 | |
| 40 | /** |
| 41 | * @brief Returns @c true if @c is non-ASCII character, @c false otherwise. |
no test coverage detected