Skip to content

Instantly share code, notes, and snippets.

View jdarpinian's full-sized avatar

James Darpinian jdarpinian

View GitHub Profile
@marco-we
marco-we / lldbprintstring
Created June 1, 2016 13:19
lldb print string
if you want to print an char* via lldb, lldb only prints the first about 300 characters. to print the complete one just type:
`set set target.max-string-summary-length 10000`
in the lldb command line. now the first 10000 characters are print via:
`p someCharPointer`
(source: http://www.web0.at/lldb-print-complete-char-string/)