Skip to content

Instantly share code, notes, and snippets.

@mlhoutel
Created June 23, 2021 15:56
Show Gist options
  • Save mlhoutel/e0d7913af4b49013f7aca887bc8cc676 to your computer and use it in GitHub Desktop.
Save mlhoutel/e0d7913af4b49013f7aca887bc8cc676 to your computer and use it in GitHub Desktop.
inline int positive_modulo(int i, int n) {
return (i % n + n) % n;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment