I'm using a windows-api that returns a wide-char multi-string as result. The result is same as below:
L"apple\0banana\0orange\0\0"
Is there any standard function or good performance solution to copy this structure to a buffer?
copy_wide_char_multi_string(dst, src); // dst and src are wchar_t arrays
I've never bothered to work with wide character strings so consider this a guideline.
You can implement an algorithm like the following:
This will give you the size of the data in the buffer. Once you have that you can just use wmemcpy on it