Date: Wed, 12 May 1999 17:19:21 +0300 (EET DST) From: Eugene Ageenko To: Eli Zaretskii cc: djgpp AT delorie DOT com, Pasi Franti Subject: Re: Portability and size_t type related question In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Reply-To: djgpp AT delorie DOT com X-Mailing-List: djgpp AT delorie DOT com X-Unsubscribes-To: listserv AT delorie DOT com Precedence: bulk > > Q2. More complicated question: the type 'size_t'. > > Why is this a different question? The answer is the same as Q1. > Ok. thanx. it is like here then: typedef unsigned short U16; typedef unsigned long U32; typedef unsigned char BYTE; then I have to care when dealing with size_t type variables. I should cast type conversion in memory operation. I better eliminate all size_t variable type definitions, and change them to custom type as above, when using fucntions required size_t type I better use type conversion. Eugene