Files
Christian Poveda 1213b3dfb1 split the repo into a workspace
remove `clap` dependency 🎉

update the book installation instructions
2022-10-04 20:47:17 -05:00

20 lines
399 B
C

// bindgen-flags: --with-derive-hash --with-derive-partialeq --with-derive-eq
//
struct foo {
unsigned int a;
union {
unsigned int b;
struct {
unsigned short c1;
unsigned short c2;
};
struct {
unsigned char d1;
unsigned char d2;
unsigned char d3;
unsigned char d4;
};
};
};