Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
bgColor#ccccff
int si1, si2, sresult;

if ( (si1 < 0) 
  || (si2 < 0) 
  || (si2 >= sizeof(int)*CHAR_BIT) 
  || (si1 > (INT_MAX >> si2)) ) 
{
  /* handle error condition */
}
else {
  sresult = si1 << si2;
}

...