[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Java/Unicode brain damage
- From: David Brownell <david-b@pacbell.net>
- To: Joel Rees <rees@mediafusion.co.jp>, xml-dev@lists.xml.org
- Date: Fri, 27 Jul 2001 15:24:21 -0700
> <interesting-thought>If you really want to work internally in UTF-16 or
> UTF-32 in C, get yourself a processor with a 16- or 32-bit byte and a
> Standard C for it
Actually, I'd expect the "wchar_t" type to be either 16 bits (most machines)
or 32 bits (many SVr4 derived distributions) ... and there are standard
libraries to work with "wchar" strings. Use those, if you're not using UTF-8
encoded "char" strings.
- Dave