shithub: drawterm-fdroid

ref: 6519a0a6f21e7935c2db7ed75ed4afa9001f7b7c
dir: /libc/runestrcat.c/

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

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

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