xref: /llvm-project/lldb/test/API/tools/lldb-dap/output/main.c (revision 30ca06c4d0d06f67f10a9e19d4333acc2074811b)
1 #include <stdio.h>
2 #include <stdlib.h>
3 #include <unistd.h>
4 
5 int main() {
6   // Ensure multiple partial lines are detected and sent.
7   printf("abc");
8   printf("def");
9   printf("ghi\n");
10   printf("hello world\n"); // breakpoint 1
11   return 0;
12 }
13