ref: 809522e80f4011925e8d92aa480fad04c7ff9e10
dir: /sys/src/liboventi/strdup.c/
#include <u.h> #include <libc.h> #include <oventi.h> char* vtStrDup(char *s) { int n; char *ss; if(s == nil) return nil; n = strlen(s) + 1; ss = vtMemAlloc(n); memmove(ss, s, n); setmalloctag(ss, getcallerpc(&s)); return ss; }