gdb-tools
gdb-tools copied to clipboard
Various tools to improve the gdb experience
In this example: ``` struct S { int _i; long _l; }; struct S s[] = {{4, 5}, {94, 34}, {83, 95}}; int main() { return s[0]._i + s[2]._l; }...
I'm very excited about duel (I remember using the non-python version back in the 90's). I wonder if it's possible to call functions the same way that the print command...
IMO, there is a fundamental printing behavior missing here, the support of print format: > FMT is a repeat count followed by a format letter and a size letter. >...
If a function returns a pointer to a struct, you can't access the members with ->. Basically I want that this test succeeds: ```diff diff --git a/tests/test.cc b/tests/test.cc index f3952f8..3c02623...