show/hide this revision's text 3 added 202 characters in body

UTF-8 is one possible encoding for Unicode. It defines 1, 2 or 3 bytes per character. When you read it through getwc(), it will fetch one to three bytes and compose from them a single 16-bit character, which would fit within a wchar (which is at least 16 bits wide).

But since all of the Unicode values map to 0x0000 to 0xFFFF, there are no values left to return condition or error codes in.

Various error codes include EOF (WEOF), which maps to -1. If you were to put the return value of getwc() in a wchar, there would be no way to distinguish it from a Unicode 0xFFFF character (which, BTW, is reserved anyway, but I digress).

So the answer is to use a wider type, an wint_t (or int), which holds at least 32 bits. That gives the lower 16 bits for the real value, and anything with a bit set outside of that range means something other than a character returning happened.

Why don't we always use wchar then instead of wint? Most string-related functions use wchar because on most platforms it's ½ the size of wint, so strings have a smaller memory footprint.

show/hide this revision's text 2 added 9 characters in body; added 33 characters in body

UTF-8 is one possible encoding for Unicode. It defines 1, 2 or 3 bytes per character. When you read it through getwc(), it will fetch one to three bytes and compose from them a single 16-bit character, which would fit within a wchar (which is at least 16 bits wide).

But since all of the Unicode values map to 0x0000 to 0xFFFF, there are no values left to return condition or error codes in.

Various error codes include EOF (WEOF), which maps to -1. If you were to put the return value of getwc() in a wchar, there would be no way to distinguish it from a Unicode 0xFFFF character (which, BTW, is reserved anyway, but I digress).

So the answer is to use a wider type, an wint_t (or int), which holds at least 32 bits. That gives the lower 16 bits for the real value, and anything with a bit set outside of that range means something other than a character returning happened.

show/hide this revision's text 1

UTF-8 is one possible encoding for Unicode. It defines 1, 2 or 3 bytes per character. When you read it through getwc(), it will fetch one to three bytes and compose from them a single 16-bit character, which would fit within a wchar.

But since all of the Unicode values map to 0x0000 to 0xFFFF, there are no values left to return condition or error codes in.

Various error codes include EOF (WEOF), which maps to -1. If you were to put the return value of getwc() in a wchar, there would be no way to distinguish it from a Unicode 0xFFFF character (which, BTW, is reserved anyway, but I digress).

So the answer is to use a wider type, an wint_t (or int), which holds 32 bits. That gives the lower 16 bits for the real value, and anything with a bit set outside of that range means something other than a character returning happened.