xref: /llvm-project/lldb/test/API/lang/c/shared_lib/foo.h (revision 99451b4453688a94c6014cac233d371ab4cc342d)
1 struct foo;
2 
3 struct sub_foo
4 {
5   int sub_1;
6   char *sub_2;
7 };
8 
9 LLDB_TEST_API struct foo *GetMeAFoo();
10 LLDB_TEST_API struct sub_foo *GetMeASubFoo(struct foo *in_foo);
11