* @brief Checks if the given character is either printable or the zero byte. */
| 104 | * @brief Checks if the given character is either printable or the zero byte. |
| 105 | */ |
| 106 | bool isPrintableOrZeroByte(WideCharType c) { |
| 107 | return isPrintable(c) || c == '\0'; |
| 108 | } |
| 109 | |
| 110 | /** |
| 111 | * @brief Checks if the given string has any unprintable characters. |
no test coverage detected