| 134 | } |
| 135 | |
| 136 | inline bool isPrintable(const char c) { |
| 137 | if (isVisible(c) || isWhitespace(c)) { |
| 138 | return true; |
| 139 | } |
| 140 | return false; |
| 141 | } |
| 142 | |
| 143 | const std::vector<std::string> bzu_standardPerms(void); |
| 144 |
nothing calls this directly
no test coverage detected