uintptr_t


Vocabulary
alien.c-types

Word description
This C type represents an unsigned integer type large enough to hold any pointer value; that is, on 32-bit platforms, it will be four bytes, and on 64-bit platforms, it will be eight bytes. Input values will be converted to integers and truncated to 32 or 64 bits; output values will be returned as integers.

Definition