mirror of
https://github.com/NickHu/sway
synced 2024-11-16 19:49:56 +01:00
4 lines
62 B
C
4 lines
62 B
C
|
int wrap(int i, int max) {
|
||
|
return ((i % max) + max) % max;
|
||
|
}
|