ref: fb3b5e0ed5af8a73d549e336a649d5b6c2a115ad
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); }