kit

kit
git clone https://git.ryansepassi.com/git/kit.git
Log | Files | Refs | README

builtin_04_offsetof.c (105B)


      1 struct S {
      2   int a, b;
      3 };
      4 
      5 int test_main(void) { return (int)__builtin_offsetof(struct S, b) * 10 + 2; }