@@ -0,0 +1,5 @@
unsigned short reverse(unsigned short x)
{
x = (x & 0xFF) << 8 | (x & 0xFF00) >> 8;
return x;
}
The note is not visible to the blocked user.