shithub: tlsclient

ref: 9fe184eb7f41fc76c2196e8d84d6f188c3469a93
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;
}