llvm-project/lldb/lit/tools/lldb-instr/Inputs/foo.h

20 lines
308 B
C

struct Bar {};
struct Foo {
Foo();
Foo(int i);
void A();
void B(int i);
int C(int i);
int D(bool b) const;
static void E();
static int F(int i);
void G(const char *fmt...);
static Foo H();
void I() const;
Bar J() const;
Bar K(void *v) const;
Bar &L() const;
Bar *M() const;
};