summaryrefslogtreecommitdiff
path: root/include/util.h
diff options
context:
space:
mode:
authorDrew DeVault <[email protected]>2015-08-25 16:12:37 -0400
committerDrew DeVault <[email protected]>2015-08-25 16:12:37 -0400
commitfa6292ff24082f90886353844b45e99ec965daa5 (patch)
tree06f9219532f6f057410910dbfe43d3884acd90bc /include/util.h
parent2e755cf13fb653a397a8895121184322dc1dcdd6 (diff)
parent95353051379126f99d310936a46052b4a89bd880 (diff)
Merge pull request #129 from minus7/workspaces
Implemented "move container to workspace"
Diffstat (limited to 'include/util.h')
-rw-r--r--include/util.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/include/util.h b/include/util.h
new file mode 100644
index 00000000..8e65e6d6
--- /dev/null
+++ b/include/util.h
@@ -0,0 +1,9 @@
+#ifndef _SWAY_UTIL_H
+#define _SWAY_UTIL_H
+
+/**
+ * Wrap i into the range [0, max[
+ */
+int wrap(int i, int max);
+
+#endif