This website works better with JavaScript.
Explore
Help
Sign In
itycodes
/
convince
Watch
1
Star
0
Fork
You've already forked convince
0
Code
Issues
Pull Requests
Packages
Projects
Releases
Wiki
Activity
4e7dccf631
convince
/
sway
/
util.c
6 lines
81 B
Raw
Blame
History
#
include
"util.h"
int
wrap
(
int
i
,
int
max
)
{
return
(
(
i
%
max
)
+
max
)
%
max
;
}
Reference in new issue
View Git Blame
Copy Permalink