Skip to content

Instantly share code, notes, and snippets.

@renpytom
Last active August 29, 2015 13:56
Show Gist options
  • Save renpytom/9197371 to your computer and use it in GitHub Desktop.
Save renpytom/9197371 to your computer and use it in GitHub Desktop.
unsigned int bit = (1 << i);
if (read_val == '1') {
values |= bit;
} else {
values &= ~bit;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment