mirror of
https://github.com/awesomeWM/awesome
synced 2024-11-05 20:26:09 +01:00
14 lines
344 B
C
14 lines
344 B
C
/* See LICENSE file for copyright and license details. */
|
|
|
|
#ifndef JDWM_DRAW_H
|
|
#define JDWM_DRAW_H
|
|
|
|
#include <string.h>
|
|
#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
|