wchar_t vs wint_t - Stack Overflow most recent 30 from stackoverflow.com 2009-12-10T20:45:59Z http://stackoverflow.com/feeds/question/1081456 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1081456/wchart-vs-wintt 0 wchar_t vs wint_t Dervin Thunk 2009-07-04T04:01:08Z 2009-07-05T12:07:26Z <p>Hello. This is an ANSI C question. I have the following code.</p> <pre><code>#include &lt;stdio.h&gt; #include &lt;locale.h&gt; #include &lt;wchar.h&gt; int main() { if (!setlocale(LC_CTYPE, "")) { printf( "Can't set the specified locale! " "Check LANG, LC_CTYPE, LC_ALL.\n"); return -1; } wint_t c; while((c=getwc(stdin))!=WEOF) { printf("%lc",c); } return 0; } </code></pre> <p>I need full UTF-8 support, but even at this simplest level, can I improve this somehow? Why is <code>wint_t</code> used, and not <code>wchar</code>, with appropriate changes?</p> http://stackoverflow.com/questions/1081456/wchart-vs-wintt/1081459#1081459 3 Answer by Brandon E Taylor for wchar_t vs wint_t Brandon E Taylor 2009-07-04T04:05:01Z 2009-07-04T04:45:22Z <p><code>wint_t</code> is capable of storing any valid value of <code>wchar_t</code>. A <code>wint_t</code> is also capable of taking on the result of evaluating the <code>WEOF</code> macro (note that a <code>wchar_t</code> is too narrow to hold the result).</p> http://stackoverflow.com/questions/1081456/wchart-vs-wintt/1081481#1081481 3 Answer by lavinio for wchar_t vs wint_t lavinio 2009-07-04T04:24:28Z 2009-07-05T12:07:26Z <p><code>UTF-8</code> is one possible encoding for Unicode. It defines 1, 2 or 3 bytes per character. When you read it through <a href="http://www.opengroup.org/onlinepubs/000095399/basedefs/wchar.h.html" rel="nofollow"><code>getwc()</code></a>, it will fetch one to three bytes and compose from them a single 16-bit character, which would fit within a <code>wchar</code> (which is at least 16 bits wide).</p> <p>But since all of the Unicode values map to <code>0x0000</code> to <code>0xFFFF</code>, there are no values left to return condition or error codes in.</p> <p>Various error codes include EOF (<code>WEOF</code>), which maps to -1. If you were to put the return value of <code>getwc()</code> in a <code>wchar</code>, there would be no way to distinguish it from a Unicode <code>0xFFFF</code> character (which, BTW, is reserved anyway, but I digress).</p> <p>So the answer is to use a <em>wider</em> type, an <code>wint_t</code> (or <code>int</code>), 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.</p> <p><strong>Why don't we always use <code>wchar</code> then instead of <code>wint</code>? Most string-related functions use <code>wchar</code> because on most platforms it's ½ the size of <code>wint</code>, so strings have a smaller memory footprint.</strong></p>