git: 9front

ref: c7f7f935eb1cc80f50f58567ee1b3f827afb1966
dir: /sys/src/cmd/unix/u9fs/safecpy.c/

View raw version
#include <stdio.h>

void
safecpy(char *to, char *from, int tolen)
{
	int fromlen;
	memset(to, 0, tolen);
	fromlen = from ? strlen(from) : 0;
	if (fromlen > tolen)
		fromlen = tolen;
	memcpy(to, from, fromlen);
}