shithub: drawterm-fdroid

ref: a85fefcc920f837ce3a8e0010cfd09cf0b3523ce
dir: /libc/runestrdup.c/

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

Rune*
runestrdup(Rune *s) 
{  
	Rune *ns;

	ns = malloc(sizeof(Rune)*(runestrlen(s) + 1));
	if(ns == 0)
		return 0;

	return runestrcpy(ns, s);
}