blob: b4377de18c165bbb06ae1fbef1d1fe3e8c6da152 [file] [log] [blame]
#include <stdio.h>
#include "foo.h"
int
main ()
{
struct foo *my_foo_ptr;
my_foo_ptr = GetMeAFoo();
printf ("My sub foo has: %d.\n", GetMeASubFoo(my_foo_ptr)->sub_1); // Set breakpoint 0 here.
return 0;
}