Read a null-terminated wide string from memory.
(self, address: int, maxlen: int = 0)
| 80 | return s |
| 81 | |
| 82 | def read_wstring(self, address: int, maxlen: int = 0) -> str: |
| 83 | """Read a null-terminated wide string from memory. |
| 84 | """ |
| 85 | |
| 86 | return self.read_string(address, 'utf-16le', maxlen) |
| 87 | |
| 88 | def read_cstring(self, address: int, maxlen: int = 0) -> str: |
| 89 | """Read a null-terminated ASCII string from memory. |
no test coverage detected