aboutsummaryrefslogtreecommitdiff
path: root/2.7.c
blob: fc493aac491f957d9d34ae84f692086cffad695a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
#include <stdio.h>

#define INT_NBITS 32

unsigned getbits(unsigned x, int from, int to);
void pbits(int x);
unsigned invert(unsigned x, int from, int to);

int 
main(void)
{
  int x = 3423834583;

  pbits(x);

  pbits(invert(x, 32, 32));
  
  return 0;
}

unsigned 
getbits(unsigned x, int from, int to)
{
  return (x >> (from+1-to)) & ~(~(unsigned)0 << to);
}

void 
pbits(int x)
{
  for (int i = INT_NBITS-1; i >= 0; i--) {
    if (i%4 == 3)
      printf(" ");

    printf("%u", getbits(x, i, 1));
  }

  printf("\n");
}

unsigned 
invert(unsigned x, int from, int to)
{
  return x ^ ((((unsigned)~0 << (INT_NBITS-from)) >> (INT_NBITS-to)) << (from-to));
}