Read a null-terminated ASCII string from memory.
(self, address: int, maxlen: int = 0)
| 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. |
| 90 | """ |
| 91 | |
| 92 | return self.read_string(address, 'latin1', maxlen) |
| 93 | |
| 94 | def read_guid(self, address: int) -> UUID: |
| 95 | raw_guid = self.ql.mem.read(address, 16) |