int32ToUint32 function

int int32ToUint32(
  1. int d
)

Binary conversion of an int32 to a uint32. This is equivalent in C to typecasting an int to an unsigned int.

Implementation

int int32ToUint32(int d) {
  __int32[0] = d;
  return __int32ToUint32[0];
}