sway/sway/util.c

6 lines
81 B
C
Raw Normal View History

2015-08-25 17:53:59 +00:00
#include "util.h"
2015-08-25 13:17:18 +00:00
int wrap(int i, int max) {
return ((i % max) + max) % max;
}