all repos — dmenu @ 4508fd2c4ee3171bdc1bffb7e53ecda8290292ef

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;
}