not8 function

int not8(
  1. int x
)

Implementation

int not8(int x) {
  assert((x >= 0) && (x <= _MASK_8));
  return ~x & _MASK_8;
}