The question is self-explanatory. I'm using the C API.

link|improve this question

feedback

3 Answers

up vote 1 down vote accepted

No, but it's easy to implement. It's just:

UChar *u_strdup(UChar *in) {
    uint32_t len = u_strlen(in) + 1;
    UChar *result = malloc(sizeof(UChar) * len);
    u_memcpy(result, in, len);
    return result;
}
link|improve this answer
Why not just use memdup? – Steve-o Mar 23 '11 at 10:51
1  
@Steve-o: memdup is not a standard function that I've ever heard of. – Thanatos Mar 23 '11 at 15:19
Oops, ok looks like I was confusing with g_memdup in glib. – Steve-o Mar 24 '11 at 3:12
feedback

There isn't, but you could request one and file a bug.

However, ICU typically doesn't return memory the caller owns- it uses its own wrapped malloc/free functions and defines a custom deleter on objects. So, this would be quite different.

link|improve this answer
feedback

Check out _tcsdup.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.