Skip to content

Instantly share code, notes, and snippets.

@cacharle
Created November 19, 2019 23:46
Show Gist options
  • Save cacharle/fbf675b0e443e27586f3c3fd1159739a to your computer and use it in GitHub Desktop.
Save cacharle/fbf675b0e443e27586f3c3fd1159739a to your computer and use it in GitHub Desktop.
unsigned char rotate_left(unsigned char b)
{
unsigned char first = b & 0x80;
b <<= 1;
b |= first >> 7;
return b;
}
unsigned char rotate_right(unsigned char b)
{
unsigned char last = b & 1;
b >>= 1;
b |= last << 7;
return b;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment