kit

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

6_3_1_2_01_bool_from_ptr.c (88B)


      1 int test_main(void) {
      2   int x = 1;
      3   _Bool b = (int*)&x ? 1 : 0;
      4   return b ? 42 : 0;
      5 }