Skip to content
  1. Sep 21, 2020
  2. Sep 20, 2020
    • Rui Ueyama's avatar
      Add _Bool type · 733e0dc2
      Rui Ueyama authored
      _Bool isn't just a 1-bit integer because when you convert a value
      to bool, the result is 1 if the original value is non-zero. This
      is contrary to the other small integral types, e.g. char, as you
      can see below:
      
        char x  = 256; // x is 0
        _Bool y = 256; // y is 1
      733e0dc2
    • Rui Ueyama's avatar
      Handle function argument type conversion · fececef7
      Rui Ueyama authored
      fececef7