Facebook
From Ample Finch, 6 Years ago, written in Plain Text.
Embed
Download Paste or View Raw
Hits: 274
  1. void to_little_endian(unsigned short *s) {
  2.  
  3.         *s = (*s >> 8) | (*s << 8);
  4.  
  5. }