What's the best way to declare an integer type which is always 4 byte on any platforms? I don't worry about certain device or old machines which has 16-bit int.
|
|
|||||||||||||||||
|
|
|||||||||||||
|
|
C doesn't concern itself very much with exact sizes of integer types, C99 introduces the header stdint.h , which is probably your best bet, include that and you can use e.g. int32_t Ofcourse not all platforms might support that. |
|||
|
|
|
Corey's answer is correct for "best", in my opinion, but a simple "int" will also work in practice (given that you're ignoring systems with 16-bit int). At this point, so much code depends on int being 32-bit that system vendors aren't going to change it. (See also why long is 32-bit on lots of 64-bit systems and why we have "long long".) One of the benefits of using int32_t, though, is that you're not perpetuating this problem! |
|||||||
|
|
You could hunt down a copy of Brian Gladman's
|
||||
|
|
|
If stdint.h is not available for your system, make your own. I always have a file called "types.h" that have typedefs for all the signed/unsigned 8, 16, and 32 bit values. |
|||
|
|
|
also depending on your target platforms you can use autotools for your build system it will see if stdint.h/inttypes.h exist and if they don't will create appropriate typedefs in a "config.h" |
|||
|
|
|
stdint.h is the obvious choice, but it's not necessarily available. If you're using a portable library, it's possible that it already provides portable fixed-width integers.
For example, SDL has |
|||
|
|
|
I found this: http://www.velocityreviews.com/forums/t282915-defining-a-32-bit-integer-on-every-platform.html May be of help. |
|||
|
|
|
You need to include This link explains what I'm saying: HP link about inttypes.h And this link has a table showing why you don't want to use |
||||
|
|