git: 9front

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