git: 9front

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