sway/sway/util.c
2015-08-25 19:53:59 +02:00

6 lines
81 B
C

#include "util.h"
int wrap(int i, int max) {
return ((i % max) + max) % max;
}