1#include <stdio.h>
2
3void
4call_me()
5{
6 printf(format: "Set another breakpoint here.\n");
7}
8
9int
10main()
11{
12 int change_me = 0;
13 for (int i = 0; i < 2; i++)
14 {
15 printf (format: "Set a breakpoint here: %d with: %d.\n", i, change_me);
16 }
17 call_me();
18 return 0;
19}
20

source code of lldb/test/API/functionalities/breakpoint/auto_continue/main.c