ref: 9d09c9315c3051e7633f7774ab65345804f1e192
dir: /libc/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); }