[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Re: Unicode
- From: Roberto Ierusalimschy <rieru@...>
- Date: Mon, 21 Jan 2002 09:35:13 -0600 (CST)
On Mon, 21 Jan 2002, 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