1#include <stdio.h>
2#include "a.h"
3
4int
5main_func(int input)
6{
7 return printf(format: "Set B breakpoint here: %d.\n", input);
8}
9
10int
11main()
12{
13 a_func(10);
14 main_func(input: 10);
15 printf(format: "Set a breakpoint here:\n");
16 return 0;
17}
18

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