ref: 86a9f92f47f9cb5d9eb3806e458d856b0ee81b08 dir: /sys/src/libString/s_unique.c/
#include <u.h> #include <libc.h> #include "String.h" String* s_unique(String *s) { String *p; if(s->ref > 1){ p = s; s = s_clone(p); s_free(p); } return s; }