Skip to content

Instantly share code, notes, and snippets.

@rubenfonseca
Created November 27, 2014 11:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rubenfonseca/62271ea10a5c9a7ed794 to your computer and use it in GitHub Desktop.
Save rubenfonseca/62271ea10a5c9a7ed794 to your computer and use it in GitHub Desktop.
unsigned swap16(unsigned arg)
{
return ((arg >> 8) & 0x00FF) | ((arg << 8) & 0xFF00);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment