]> git.sur5r.net Git - i3/i3/commitdiff
Define Macros MAX and MIN
authorAxel Wagner <mail@merovius.de>
Thu, 16 Sep 2010 23:16:53 +0000 (01:16 +0200)
committerAxel Wagner <mail@merovius.de>
Thu, 16 Sep 2010 23:16:53 +0000 (01:16 +0200)
i3bar/include/util.h

index 0f5dd3e3083496fad2a705f1db74083f3373d6c2..7e6381527e6588cddcdaec5d48f24c246e48c324 100644 (file)
 
 #include "queue.h"
 
+/* Get the maximum/minimum of x and y */
+#define MAX(x,y) ((x) > (y) ? (x) : (y))
+#define MIN(x,y) ((x) < (y) ? (x) : (y))
+
 /* Securely free p */
 #define FREE(p) do { \
     if (p != NULL) { \