Followup to:  <[EMAIL PROTECTED]>
By author:    Tomohiro KUBOTA <[EMAIL PROTECTED]>
In newsgroup: linux.utf8
> 
>  4. There will be no __STDC_ISO_10646__, a seed of flamewar.
> 

__STDC_ISO_10646__ should be considered an optimization: if this
symbol is defined, you know wchar_t is UCS.  Otherwise, you have to go
through the full processing.  It lets you put:

#ifdef __STDC_ISO_10646__
        /* Simpler code that assumes wchar_t is UCS */
#else
        /* Full-blown code */
#endif

That's all.

        -hpa
-- 
<[EMAIL PROTECTED]> at work, <[EMAIL PROTECTED]> in private!
"Unix gives you enough rope to shoot yourself in the foot."
http://www.zytor.com/~hpa/puzzle.txt
-
Linux-UTF8:   i18n of Linux on all levels
Archive:      http://mail.nl.linux.org/linux-utf8/

Reply via email to