ref: a43c1e6fab4d75c8d173a482ee8f4aa04de151c0 dir: /libc/runestrcat.c/
#include <u.h> #include <libc.h> Rune* runestrcat(Rune *s1, Rune *s2) { runestrcpy(runestrchr(s1, 0), s2); return s1; }