]> git.lizzy.rs Git - bspwm.git/blob - helpers.h
Always use BUFSIZ
[bspwm.git] / helpers.h
1 #ifndef _HELPERS_H
2 #define _HELPERS_H
3
4 #include <stdarg.h>
5 #include <stdio.h>
6 #include <stdint.h>
7
8 #define LENGTH(x)         (sizeof(x) / sizeof(*x))
9 #define MAX(A, B)         ((A) > (B) ? (A) : (B))
10 #define MIN(A, B)         ((A) < (B) ? (A) : (B))
11 #define BOOLSTR(A)        ((A) ? "true" : "false")
12
13 #define XCB_CONFIG_WINDOW_X_Y_WIDTH_HEIGHT XCB_CONFIG_WINDOW_X | XCB_CONFIG_WINDOW_Y | XCB_CONFIG_WINDOW_WIDTH | XCB_CONFIG_WINDOW_HEIGHT
14 #define XCB_CONFIG_WINDOW_X_Y XCB_CONFIG_WINDOW_X | XCB_CONFIG_WINDOW_Y
15
16 #ifdef DEBUG
17 #  define PUTS(x)         puts(x)
18 #  define PRINTF(x,...)   printf(x, __VA_ARGS__)
19 #else
20 #  define PUTS(x)         ((void)0)
21 #  define PRINTF(x,...)   ((void)0)
22 #endif
23
24 void logmsg(FILE *, char *, va_list);
25 void warn(char *, ...);
26 __attribute__((noreturn))
27 void die(char *, ...);
28 uint32_t get_color(char *);
29
30 #endif