aboutsummaryrefslogtreecommitdiffstats
path: root/sway/util.c
blob: 25aeb9f431f74bc3d67c5681a21ca35f54c060d0 (plain) (blame)
1
2
3
int wrap(int i, int max) {
	return ((i % max) + max) % max;
}