1#include <stdio.h>
2
3int
4test_func()
5{
6 return printf(format: "I am a test function.");
7}
8
9void
10break_on_me()
11{
12 printf(format: "I was called.\n");
13}
14
15int
16main()
17{
18 break_on_me();
19 test_func();
20 return 0;
21}
22

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