shithub: riscv

ref: 232a064f3a9afcd9a5c1de45f1558e4522c511bd
dir: /sys/src/libc/port/runestrcat.c/

View raw version
#include <u.h>
#include <libc.h>

Rune*
runestrcat(Rune *s1, Rune *s2)
{

	runestrcpy(runestrchr(s1, 0), s2);
	return s1;
}