Skip to content
  1. Dec 07, 2020
    • Rui Ueyama's avatar
      Add typedef · a6b82da1
      Rui Ueyama authored
      In the following example, `x` is defined as an alias for `int`.
      
        typedef x;
      
      Below is valid C code where the second `t` is a local variable
      of type int having value 3.
      
        typedef int t;
        t t = 3;
      a6b82da1
    • Rui Ueyama's avatar
      Add void type · 8c3503bb
      Rui Ueyama authored
      8c3503bb
  2. Oct 15, 2020
  3. Oct 08, 2020
  4. Oct 07, 2020