mirror of
https://github.com/vale981/bspwm
synced 2025-03-05 18:01:37 -05:00
12 lines
188 B
C
12 lines
188 B
C
#ifndef _UTILS_H
|
|
#define _UTILS_H
|
|
|
|
#include <stdarg.h>
|
|
#include <xcb/xcb.h>
|
|
#include <xcb/xcb_event.h>
|
|
#include "types.h"
|
|
|
|
void die(const char *, ...);
|
|
uint32_t get_color(char *);
|
|
|
|
#endif
|