kit

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

6_4_5_04_wide_string_subscript.c (147B)


      1 #include <stddef.h>
      2 
      3 int test_main(void) {
      4   const wchar_t* s = L"\x012a";
      5   return sizeof(L"\x012a") == 8 && s[0] == 298 && s[1] == 0 ? 42 : 0;
      6 }