]> git.lizzy.rs Git - bspwm.git/blobdiff - helpers.h
Relieve tree.c from non tree related functions
[bspwm.git] / helpers.h
index 97e667aa0491c1d74af6cdcded77671f8044c263..be2fc39d2991ce7539b59e0ee5ca8a832caf57e9 100644 (file)
--- a/helpers.h
+++ b/helpers.h
@@ -1,6 +1,7 @@
 #ifndef _HELPERS_H
 #define _HELPERS_H
 
+#include <xcb/xcb.h>
 #include <stdarg.h>
 #include <stdio.h>
 #include <stdint.h>
 #define MIN(A, B)         ((A) < (B) ? (A) : (B))
 #define BOOLSTR(A)        ((A) ? "true" : "false")
 
-#define MAXLEN  256
 #define XCB_CONFIG_WINDOW_X_Y_WIDTH_HEIGHT XCB_CONFIG_WINDOW_X | XCB_CONFIG_WINDOW_Y | XCB_CONFIG_WINDOW_WIDTH | XCB_CONFIG_WINDOW_HEIGHT
 #define XCB_CONFIG_WINDOW_X_Y XCB_CONFIG_WINDOW_X | XCB_CONFIG_WINDOW_Y
+#define MAXLEN 256
+
+#define REMLEN(x)         (BUFSIZ - strlen(x) - 1)
 
 #ifdef DEBUG
 #  define PUTS(x)         puts(x)
-#  define PRINTF(x,...)   printf(x, ##__VA_ARGS__)
+#  define PRINTF(x,...)   printf(x, __VA_ARGS__)
 #else
 #  define PUTS(x)         ((void)0)
 #  define PRINTF(x,...)   ((void)0)
 #endif
 
-void logmsg(FILE *, char *, va_list);
 void warn(char *, ...);
 __attribute__((noreturn))
-void die(char *, ...);
+void err(char *, ...);
 uint32_t get_color(char *);
+void get_pointer_position(xcb_point_t *);
 
 #endif