mirror of
https://github.com/NickHu/sway
synced 2025-01-03 23:03:42 +01:00
3 lines
62 B
C
3 lines
62 B
C
int wrap(int i, int max) {
|
|
return ((i % max) + max) % max;
|
|
}
|