1struct foo;2 3struct sub_foo4{5 int sub_1;6 char *sub_2;7};8 9struct foo *GetMeAFoo();10struct sub_foo *GetMeASubFoo (struct foo *in_foo);11 12 13