xref: /llvm-project/lldb/test/API/functionalities/breakpoint/source_regexp/a.c (revision 99451b4453688a94c6014cac233d371ab4cc342d)
1 #include <stdio.h>
2 
3 #include "a.h"
4 
5 static int
main_func(int input)6 main_func(int input)
7 {
8   return printf("Set B breakpoint here: %d", input);
9 }
10 
11 int
a_func(int input)12 a_func(int input)
13 {
14   input += 1; // Set A breakpoint here;
15   return main_func(input);
16 }
17