addition32 method

dynamic addition32(
  1. int n1,
  2. int n2
)

Implementation

addition32(int n1,
    int n2) // emulates overflow of a c 32-bits unsiged integer variable, instead of the operator +. these both arguments must be non-negative integers expressible using unsigned 32 bits.
{
  return unsigned32((n1 + n2) & 0xffffffff);
}