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

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