Skip to content

Instantly share code, notes, and snippets.

@DanielO
Created May 24, 2020 05:27
Show Gist options
  • Save DanielO/2c5cbc6669f3288b728db068633da023 to your computer and use it in GitHub Desktop.
Save DanielO/2c5cbc6669f3288b728db068633da023 to your computer and use it in GitHub Desktop.
void
satincr_u8(uint8_t *x) {
if (*x == 255)
return;
*x++;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment