diff options
| author | Rusty Wagner <rusty.wagner@gmail.com> | 2024-08-22 12:55:49 -0600 |
|---|---|---|
| committer | Rusty Wagner <rusty.wagner@gmail.com> | 2024-10-21 13:56:55 -0400 |
| commit | d8e3001e535fad178c621ff07418f81f25123dc4 (patch) | |
| tree | 54c03cef2f0bdfd9a3b6df4334c81becb63e4993 /databuffer.cpp | |
| parent | 0e281a30d73c0f31ef9442fef0346779164231ad (diff) | |
Allow multiple high level representations for display, add Pseudo Rust and a Pseudo Python example plugin
Diffstat (limited to 'databuffer.cpp')
| -rw-r--r-- | databuffer.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/databuffer.cpp b/databuffer.cpp index 6f9c3258..f8f15bd4 100644 --- a/databuffer.cpp +++ b/databuffer.cpp @@ -190,9 +190,9 @@ const uint8_t& DataBuffer::operator[](size_t offset) const } -string DataBuffer::ToEscapedString(bool nullTerminates) const +string DataBuffer::ToEscapedString(bool nullTerminates, bool escapePrintable) const { - char* str = BNDataBufferToEscapedString(m_buffer, nullTerminates); + char* str = BNDataBufferToEscapedString(m_buffer, nullTerminates, escapePrintable); string result = str; BNFreeString(str); return result; |
