llvm/lldb/test/API/functionalities/breakpoint/breakpoint_command/b.c

#include <stdio.h>

int
b_MyFunction ()
{
  // Set a breakpoint here.
  printf ("b is about to return 20.\n");
  return 20;
}