ref: e3a4e2d595c94744e71667c64d4497c9fab9ae0d 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; return runestrcpy(ns, s); }