main.c 219 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 #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; }