kit

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

6_7_2_1_10_static_bitfield_pack.c (113B)


      1 static struct {
      2   unsigned a : 5;
      3   unsigned b : 3;
      4 } g = {2, 5};
      5 
      6 int test_main(void) { return g.b * 8 + g.a; }