shithub: front

ref: 217f99b1373f6d2a29a8fc05a2e065df2b926bf0
dir: /sys/src/libc/port/utfecpy.c/

View raw version
#include <u.h>
#include <libc.h>

char*
utfecpy(char *to, char *e, char *from)
{
	char *end;

	if(to >= e)
		return to;
	end = memccpy(to, from, '\0', e - to);
	if(end == nil){
		end = e;
		while(end>to && (*--end&0xC0)==0x80)
			;
		*end = '\0';
	}else{
		end--;
	}
	return end;
}