1#include <stdio.h>
2
3void foo()
4{
5 printf(format: "foo()\n");
6}
7
8int bar()
9{
10 int ret = 3;
11 printf(format: "bar()->%d\n", ret);
12 return ret;
13}
14
15void baaz(int i)
16{
17 printf(format: "baaz(%d)\n", i);
18}
19

source code of lldb/test/API/lang/c/const_variables/functions.c