| 261 | |
| 262 | |
| 263 | bool DataBuffer::XzDecompress(DataBuffer& output) const |
| 264 | { |
| 265 | BNDataBuffer* result = BNXzDecompress(m_buffer); |
| 266 | if (!result) |
| 267 | return false; |
| 268 | output = DataBuffer(result); |
| 269 | return true; |
| 270 | } |
| 271 | |
| 272 | |
| 273 | string BinaryNinja::EscapeString(const string& s) |
no test coverage detected