gpt4 book ai didi

从 char16_t* 复制到 char16_t*

转载 作者:行者123 更新时间:2023-11-30 15:02:16 24 4
gpt4 key购买 nike

我正在尝试复制传递到函数中的 char16_t*,但尚未找到任何方法来执行此操作。

foo(char16_t* characters) {
char16_t* copiedCharacters;
//copy characters to copiedCharacters
}

我尝试使用strncopy(),但它只复制char*

最佳答案

有一个已知的结构(借自 strcpy):

char16_t* str16cpy(char16_t* destination, const char16_t* source)
{
char16_t* temp = destination;
while((*temp++ = *source++) != 0)
;
return destination;
}

关于从 char16_t* 复制到 char16_t*,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41110800/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com