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