Home
       0217-lchar.c - scc - simple c99 compiler
  HTML git clone git://git.simple-cc.org/scc
   DIR Log
   DIR Files
   DIR Refs
   DIR Submodules
   DIR README
   DIR LICENSE
       ---
       0217-lchar.c (99B)
       ---
            1 #include <wchar.h>
            2 
            3 int
            4 main()
            5 {
            6         wchar_t c;
            7 
            8         c = L'รก';
            9 
           10         if (c != 225)
           11                 return 1;
           12         return 0;
           13 }