ref: 4b4b226ee348c8f1268d6054a8f9662cd45cc042
dir: /sys/src/libc/port/runestrdup.c/
#include <u.h>
#include <libc.h>
Rune*
runestrdup(Rune *s)
{
Rune *ns;
ns = malloc(sizeof(Rune)*(runestrlen(s) + 1));
if(ns == 0)
return 0;
setmalloctag(ns, getcallerpc(&s));
return runestrcpy(ns, s);
}