a53

bitcmp

a53
Nov 10th, 2019
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.13 KB | None | 0 0
  1. int bitcmp(long long a, long long b)
  2. {
  3. if((a-b)>>63)
  4. return -1;
  5. else if(a^b)
  6. return 1;
  7. return 0;
  8. }
Add Comment
Please, Sign In to add comment