Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
int CShift(int value, int shift)
{
int high = 0;
int low = 0;
if(shift<0)
{
// left shift
int sh = shift*-1;
high = value<<sh;
low = value>>(32-sh);
}
else
{
// right shift
low = value>>shift;
high = value<<(32-shift);
}
return high | low;
}