#define FIELD_SIZEOF(t, f) (sizeof(((t*)0)->f))
2. Not strictly C: using `pahole` to analyze how structs are laid out in memory
https://linux.die.net/man/1/pahole
#define FIELD_SIZEOF(t, f) (sizeof(((t*)0)->f))
2. Not strictly C: using `pahole` to analyze how structs are laid out in memory
https://linux.die.net/man/1/pahole