[Lldb-commits] [lldb] [lldb] Add ReadCStrings API to Process (PR #172026)
David Spickett via lldb-commits
lldb-commits at lists.llvm.org
Fri Dec 12 08:34:15 PST 2025
================
@@ -205,6 +205,9 @@ class LLDB_API SBProcess {
size_t ReadCStringFromMemory(addr_t addr, void *char_buf, size_t size,
lldb::SBError &error);
+ SBStringList ReadCStringsFromMemory(SBValueList string_addresses,
----------------
DavidSpickett wrote:
I know ReadCStringFromMemory doesn't have a docstring either but let's not continue bad habits.
If it's easier to say "like ReadCStringFromMemory but for a list of strings", you can update both docstrings in this PR.
https://github.com/llvm/llvm-project/pull/172026
More information about the lldb-commits
mailing list