Shin Fujishiro Wrote: > Now I'm thinking on how to integrate conversion facility to the stdio > File framework. I think creating a low-level unicode console interface will help. Like this void putchar(char c) @disable { assert(false); } void putchar(wchar c) @disable { assert(false); } void putchar(dchar c) {...}