shithub: riscv

ref: 4afb56f570b3d6943e39bda5c9a2992a3bd139d2
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;
}