summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--sys/include/sys/param.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/sys/include/sys/param.h b/sys/include/sys/param.h
index 7783b66..2e888ab 100644
--- a/sys/include/sys/param.h
+++ b/sys/include/sys/param.h
@@ -57,6 +57,12 @@
#define COMBINE16(h, l) ((uint32_t)((uint32_t)(h) << 16) | (l))
#define COMBINE32(h, l) ((uint64_t)((uint64_t)(h) << 32) | (l))
+/*
+ * Checks if value, `v' is in range of least, 'l'
+ * and max, 'm'.
+ */
+#define IN_RANGE(V, L, M) (((V) >= (L)) && ((V) <= (M)))
+
/* Gives 1 if pointer is aligned */
#define PTR_ALIGNED(PTR, ALIGN) (!((uintptr_t)PTR & (ALIGN - 1)))