/* See LICENSE file for copyright and license details. */ #ifndef JDWM_DRAW_H #define JDWM_DRAW_H #include #include "config.h" #define textw(text) (textnw(text, strlen(text)) + dc.font.height) void drawstatus(Display *, jdwm_config *); /* draw the bar */ unsigned int textnw(const char *, unsigned int); #endif