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

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