1 // bindgen-flags: --allowlist-item 'Foo.*' 2 3 struct Foo { 4 int field; 5 }; 6 7 struct Foo FooNew(int value); 8 9 #define FooDefault 0 10 11 struct Bar { 12 int field; 13 }; 14 15 struct Foo BarNew(int value); 16 17 #define BarDefault 0 18