|
From: Roger H. <rog...@mi...> - 2007-10-02 16:33:58
|
On 2 Oct, 2007, at 16:41, James W. Walker wrote:
>
> On Oct 2, 2007, at 8:16 AM, Sean McBride wrote:
>
>> On 10/2/07 1:54 PM, Roger Holmes said:
>>
>>> On the other hand, if we define
>>>
>>> union longAndFourChars
>>> {
>>> char fourChars [ 4 ] ;
>>> unsigned long int anUnsignedInt ;
>>> }
>>
>> UInt32 would be better, since 'unsigned long int' is 64 bit when
>> building 64 bit, and 32 bit when building 32 bit.
>
> UInt32 isn't defined on platforms other than Mac, is it?
Would 'unsigned int' be safest?
|