Enrico Granata 6b4ddc655a <rdar://problem/12437929>
Providing a special mode of operator for "memory read -f c-str" which actually works in most common cases
Where the old behavior would provide:
(lldb) mem read --format s `foo`
0x100000f5d: NULL

Now we do:
(lldb) mem read --format s `foo`
0x100000f5d: "hello world"

You can also specify a count and that many strings will be showed starting at the initial address:
(lldb) mem read -c 2 -f c-str `foo`
0x100000f1d: "hello world"
0x100000f29: "short"

llvm-svn: 173076
2013-01-21 19:20:50 +00:00
..
2012-10-30 23:56:14 +00:00
2013-01-11 23:44:27 +00:00
2013-01-18 23:41:08 +00:00
2012-12-06 02:33:54 +00:00
2012-12-05 00:16:59 +00:00
2013-01-21 19:20:50 +00:00
2013-01-11 20:49:54 +00:00
2013-01-08 22:10:01 +00:00