add CLAMP macro
authorLennart Poettering <lennart@poettering.net>
Fri, 21 Sep 2007 00:14:20 +0000 (00:14 +0000)
committerLennart Poettering <lennart@poettering.net>
Fri, 21 Sep 2007 00:14:20 +0000 (00:14 +0000)
git-svn-id: file:///home/lennart/svn/public/pulseaudio/branches/lennart@1876 fefdeb5f-60dc-0310-8127-8f9354f1896f

src/pulsecore/macro.h

index d0dff5e..c6bba43 100644 (file)
@@ -28,7 +28,7 @@
 #include <unistd.h>
 #include <assert.h>
 #include <limits.h>
-#include <unistd.h>  
+#include <unistd.h>
 
 #include <pulsecore/log.h>
 
@@ -72,6 +72,10 @@ static inline size_t pa_page_align(size_t l) {
 #define MIN(a, b) ((a) < (b) ? (a) : (b))
 #endif
 
+#ifndef CLAMP
+#define CLAMP(x, low, high)  (((x) > (high)) ? (high) : (((x) < (low)) ? (low) : (x)))
+#endif
+
 /* This type is not intended to be used in exported APIs! Use classic "int" there! */
 #ifdef HAVE_STD_BOOL
 typedef _Bool pa_bool_t;