mirror of
https://github.com/vale981/bspwm
synced 2025-03-05 09:51:38 -05:00
9 lines
154 B
C
9 lines
154 B
C
#define LENGTH(x) (sizeof(x) / sizeof(*x))
|
|
/* #define EXIT_FAILURE -1 */
|
|
|
|
typedef enum {
|
|
false,
|
|
true
|
|
} bool;
|
|
|
|
void die(const char *errstr, ...);
|