git: 9front

ref: d5b73d3fc7e5b3ba48f47f43fbc588bebf4eb08c
dir: /sys/src/cmd/unix/u9fs/strecpy.c/

View raw version
#include <plan9.h>

char*
strecpy(char *to, char *e, char *from)
{
	if(to >= e)
		return to;
	to = memccpy(to, from, '\0', e - to);
	if(to == nil){
		to = e - 1;
		*to = '\0';
	}
	return to;
}