aboutsummaryrefslogtreecommitdiff
path: root/common.h
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2020-07-13 10:58:37 +0200
committerAnton Khirnov <anton@khirnov.net>2020-07-13 10:58:37 +0200
commitb06f56c959ffa4e3f3d7f0acaadcf81a93ef9fa5 (patch)
tree3791cfbead6c899b9890363103628e5c4bcde9bb /common.h
parent2756ddf7f50b7debd90ecada3944eda7e2ef5236 (diff)
parente95010e10ccf903a97ac8479b0df35fe66143a9a (diff)
Merge branch 'adaptive_step' into deploy
Diffstat (limited to 'common.h')
-rw-r--r--common.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/common.h b/common.h
index 9c36a33..d6f55f0 100644
--- a/common.h
+++ b/common.h
@@ -22,6 +22,7 @@
#define SGN(x) ((x) >= 0.0 ? 1.0 : -1.0)
#define MAX(x, y) ((x) > (y) ? (x) : (y))
#define MIN(x, y) ((x) > (y) ? (y) : (x))
+#define CLIP(val, min, max) (MIN(MAX(val, min), max))
#define ARRAY_ELEMS(arr) (sizeof(arr) / sizeof(*arr))
#include <stdio.h>