using anydot's memcpy-approach in drawtext, however it still looks awkward to me - dwm - dynamic window manager
 (HTM) git clone https://git.parazyd.org/dwm
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) README
 (DIR) LICENSE
       ---
 (DIR) commit c8eaab21b697247e2bc07ce9b8c7dfdd94e87af9
 (DIR) parent c26e22cceeee5fdd40e6bd6e019729ed316e2e01
 (HTM) Author: Anselm R Garbe <garbeam@gmail.com>
       Date:   Sun,  1 Jun 2008 17:41:15 +0100
       
       using anydot's memcpy-approach in drawtext, however it still looks awkward to me
       Diffstat:
         M dwm.c                               |       2 +-
       
       1 file changed, 1 insertion(+), 1 deletion(-)
       ---
 (DIR) diff --git a/dwm.c b/dwm.c
       @@ -572,7 +572,7 @@ drawtext(const char *text, ulong col[ColLast], Bool invert) {
                if(!len)
                        return;
                if(len < olen)
       -                strncpy(&buf[MAX(0, len - 3)], "...", len);
       +                memcpy(&buf[MAX(0, len - 3)], "...", 3);
                XSetForeground(dpy, dc.gc, col[invert ? ColBG : ColFG]);
                if(dc.font.set)
                        XmbDrawString(dpy, dc.drawable, dc.font.set, dc.gc, x, y, buf, len);