mirror of
https://github.com/vale981/bspwm
synced 2025-03-06 02:01:42 -05:00
15 lines
298 B
C
15 lines
298 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 color_pixel(char *);
|
|
uint32_t get_color(char *);
|
|
node_t *win_to_node(xcb_window_t);
|
|
void draw_triple_border(node_t *, uint32_t);
|
|
|
|
#endif
|