[Lldb-commits] [lldb] [debugserver] Implement MultiMemRead packet	(PR #162670)
    David Spickett via lldb-commits 
    lldb-commits at lists.llvm.org
       
    Fri Oct 10 09:08:25 PDT 2025
    
    
  
================
@@ -3160,6 +3165,140 @@ rnb_err_t RNBRemote::HandlePacket_m(const char *p) {
   return SendPacket(ostrm.str());
 }
 
+/// Returns true if `str` starts with `prefix`.
+static bool starts_with(std::string_view str, std::string_view prefix) {
+  return str.size() >= prefix.size() &&
+         str.compare(0, prefix.size(), prefix) == 0;
----------------
DavidSpickett wrote:
Idk if you can use StringRef here but it's very stringview like and it has a starts_with.
Maybe not because you don't want to link llvm libraries.
https://github.com/llvm/llvm-project/pull/162670
    
    
More information about the lldb-commits
mailing list