I'm working on a cross platform project that complies with the -fshort-wchar
flag
so the wchar_t
type is 2 byte. On Windows that's fine but on Linux the means no libc functions like printf
or fprintf
.
I've been looking for a good solution for some time now and frankly getting a little desperate.
Does anyone have a good idea except avoid using libc functions altogether?