Skip to content

Latest commit

 

History

History
13 lines (10 loc) · 238 Bytes

File metadata and controls

13 lines (10 loc) · 238 Bytes

USize is a variable size unsigned integer that will be as big as a word.

ifdef SYSTEM-32-BIT (
   type USize is U32;
);

ifdef SYSTEM-64-BIT (
   type USize is U64;
);