shithub: scc

ref: 89ce7731fc48c5e3d374ef3082da7958a0e4bc49
dir: /src/libc/string/strxfrm.c/

View raw version
#include <string.h>

#undef strxfrm

size_t
strxfrm(char * restrict dst, const char * restrict src, size_t n)
{
	size_t len = strlen(src);

	if (len < n)
		strcpy(dst, src);
	return len;
}