Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
linux中lstrcpy的等价物是什么?
它与 strcpy 有何不同?
lstrcpy是一个 Windows API,它为您的构建复制适当的字符大小(wchar或者char取决于您构建应用程序的方式)。没有直接的 linux 等效项(因为您必须知道要使用哪个,而不需要编译器为您解决),而是wcscpy复制wchar*字符串。
lstrcpy
wchar
char
wcscpy
wchar*