My dmenu build
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

textw.c 217 B

123456789
  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. }