Sign in
plan9port
/
plan9
/
6f568da64e625a1e517de6147058888515a0ccb7
/
.
/
src
/
libString
/
s_unique.c
blob: 134411c92ecdcebecc3c2c82649c23baa232fd2f [
file
] [
log
] [
blame
]
#include
<u.h>
#include
<libc.h>
#include
"libString.h"
String
*
s_unique
(
String
*
s
)
{
String
*
p
;
if
(
s
->
ref
>
1
){
p
=
s
;
s
=
s_clone
(
p
);
s_free
(
p
);
}
return
s
;
}