]> git.lizzy.rs Git - bspwm.git/blob - utils.h
handle "quit" message
[bspwm.git] / utils.h
1 #ifndef _UTILS_H
2 #define _UTILS_H
3
4 #define LENGTH(x) (sizeof(x) / sizeof(*x))
5 /* #define EXIT_FAILURE  -1 */
6
7 typedef enum {
8     false,
9     true
10 } bool;
11
12 void die(const char *, ...);
13
14 #endif