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