1 #include <stdio.h> 2 #include "foo.h" 3 4 int 5 main () 6 { 7 struct foo *my_foo_ptr; 8 my_foo_ptr = GetMeAFoo(); 9 10 printf ("My sub foo has: %d.\n", GetMeASubFoo(my_foo_ptr)->sub_1); // Set breakpoint 0 here. 11 12 return 0; 13 } 14