extractLastBit function

int extractLastBit (int pixel)

Implementation

int extractLastBit(int pixel) {
  int lastBit = pixel & 1;
  return lastBit;
}