all repos — dmenu @ 7afd296c40a2e8af9477add1c3d02a7c4b444747

my build of dmenu

draw/textw.c

1 2 3 4 5 6 7 8 9
/* See LICENSE file for copyright and license details. */
#include <string.h>
#include <X11/Xlib.h>
#include "draw.h"

int
textw(DC *dc, const char *text) {
	return textnw(dc, text, strlen(text)) + dc->font.height;
}