bspwm/utils.h

10 lines
154 B
C
Raw Normal View History

2012-07-30 12:21:22 +02:00
#define LENGTH(x) (sizeof(x) / sizeof(*x))
/* #define EXIT_FAILURE -1 */
2012-07-30 14:54:20 +02:00
typedef enum {
false,
true
} bool;
2012-07-30 12:21:22 +02:00
void die(const char *errstr, ...);