git: 9front

ref: 62c69b81c7249ee4e69c44c64391cdf9d1a7fc3e
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);
}