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