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