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