My dmenu build
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

10 lines
217 B

  1. /* See LICENSE file for copyright and license details. */
  2. #include <string.h>
  3. #include <X11/Xlib.h>
  4. #include "draw.h"
  5. int
  6. textw(DC *dc, const char *text) {
  7. return textnw(dc, text, strlen(text)) + dc->font.height;
  8. }