icu unicode 中是否有等效的 strdup ?

发布于 2024-10-26 02:52:42 字数 30 浏览 0 评论 0原文

这个问题是不言自明的。我正在使用 C API。

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

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

不气馁 2024-11-02 02:52:42

不,但它很容易实现。这只是:

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;
}

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;
}
余生一个溪 2024-11-02 02:52:42

没有,但您可以请求一个并提交错误。

但是,ICU 通常不会返回调用者拥有的内存 - 它使用自己的包装的 malloc/free 函数并在对象上定义自定义删除器。所以,这将是完全不同的。

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.

梦里寻她 2024-11-02 02:52:42

查看_strdup、_wcsdup、_mbsdup< /代码>。 _wcsdup 和 _mbsdup 是 strdup 的宽多字节版本。

Check out _strdup, _wcsdup, _mbsdup. _wcsdup and _mbsdup are wide and multi byte versions of strdup.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文