Re: Unicode
[
Date Prev][
Date Next][
Thread Prev][
Thread Next]
[
Date Index]
[
Thread Index]
- Subject: Re: Unicode
- From: Roberto Ierusalimschy <rieru@...>
- Date: 2002年1月21日 09:35:13 -0600 (CST)
On 2002年1月21日, Peter Loveday wrote:
> I could find/replace char *, but there may be places where that
> is used for byte *, rather than string * ?
We try to avoid that. All uses of "char" as "byte" are (or should be)
through the type lu_byte:
typedef unsigned char lu_byte; (in llimits.h)
(The only place that chars and bytes are mixed is in lzio. We still have
to fix that.)
-- Roberto