Changes between Version 1 and Version 2 of IntegerTypes
- Timestamp:
- Nov 3, 2009, 3:30:39 PM (15 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
IntegerTypes
v1 v2 11 11 C99 defines portable fixed-size types: 12 12 13 `[u]intXX_t` where `u` is present if unsigned, and `XX` is the size in bits. `XX` can range from 8 to 64, and is power of 2. 13 `[u]intXX_t` where 14 * `u` means unsigned, 15 * `XX` is the size in bits. It can range from 8 to 64, and is power of 2. 14 16 15 17 Moreover, C99 defines: