Seems pretty simple:
if (Serial.available()>0){ // new byte came in?
incomingByte = Serial.read(); // read it
}
if ( (B00000001 & incomingByte)) == 1){ // is bit 0 a 1?
// do some action
}
else {
// do some other action (or leave this out if no other action)
}