Guest User

Untitled

a guest
Oct 17th, 2017
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.12 KB | None | 0 0
  1.  
  2.  
  3.     int i;
  4.     char buf[100];
  5.  
  6.     for(i = 0; i < 99; i--) {
  7.         buf[i] >>= 1;
  8.         if(buf[i+1] & 1) {
  9.             buf[i] |= 0x80;
  10.         }
  11.     }
Add Comment
Please, Sign In to add comment