| 1898 | |
| 1899 | |
| 1900 | static inline bool IsPrintableChar(uint8_t c) |
| 1901 | { |
| 1902 | return (c == '\r') || (c == '\n') || (c == '\t') || ((c >= 0x20) && (c <= 0x7e)); |
| 1903 | } |
| 1904 | |
| 1905 | |
| 1906 | static std::string CheckForASCIIString(const DataBuffer& memory) |
no outgoing calls
no test coverage detected