1int func() {
2 return 1; // In function
3}
4
5void func_down() {
6 int dummy = 1; // In func_down
7 (void)dummy;
8}
9
10void func_up() {
11 func_down(); // In func_up
12}
13

Provided by KDAB

Privacy Policy
Update your C++ knowledge – Modern C++11/14/17 Training
Find out more

source code of lldb/test/API/commands/gui/basicdebug/func.c