hanchenye-llvm-project/lldb/test/lang/c/shared_lib/foo.h

13 lines
140 B
C

struct foo;
struct sub_foo
{
int sub_1;
char *sub_2;
};
struct foo *GetMeAFoo();
struct sub_foo *GetMeASubFoo (struct foo *in_foo);