sway/include/util.h

15 lines
180 B
C
Raw Normal View History

2015-08-25 17:53:59 +00:00
#ifndef _SWAY_UTIL_H
#define _SWAY_UTIL_H
2015-08-25 13:17:18 +00:00
/**
* Wrap i into the range [0, max[
*/
int wrap(int i, int max);
2015-08-25 17:53:59 +00:00
2015-12-14 16:07:31 +00:00
/**
* Count number of digits in int
*/
int numlen(int n);
2015-08-25 17:53:59 +00:00
#endif