I need a pair of standard integer types, signed and unsigned, that correspond to (a reasonable interpretation of) the machine word size, and that are guaranteed to be the same size as each other.
On platforms with a clean address model, intptr_t and uintptr_t fit the bill, so using those is certainly a possibility.
However, there is a possibility that the code in question may need to run on various embedded systems. I'm guessing some of these still use CPUs with a 286-style architecture where the largest efficient integer type is smaller than a pointer - please correct me if this is not so - but if it is, then there is a case to be made for using the smaller integer type.
That smaller integer type would presumably correspond to size_t and ptrdiff_t - but are those types guaranteed to be the same size as each other? I do need to be able to convert back and forth between the signed and unsigned type without loss.
Is there something else I should be considering?
intis still large enough to hold the size of a memory segment, even if the address is larger. – Bo Persson Apr 22 '12 at 10:59