What's the Nim equivalent for `wchar_t` in C? On my system, `sizeof(wchar_t)` is 4 (same as `Rune`), but `WideCString` in Nim is for UTF-16.
Should I use something like type WChar {.importc: "wchar_t", header: "<wchar.h>".} = object Run What should its name be? `WChar`, `wchar_t`, or `cwchar_t`?