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