std::wcsxfrm (3) - Linux Manuals
std::wcsxfrm: std::wcsxfrm
NAME
Synopsis
Defined in header <cwchar>
std::size_t strxfrm( wchar_t* dest, const wchar_t* src, std::size_t count );
Transforms the null-terminated wide string pointed to by src into the implementation-defined form such that comparing two transformed strings with std::wcscmp gives the same result as comparing the original strings with std::wcscoll, in the current C locale.
The first count characters of the transformed string are written to destination, including the terminating null character, and the length of the full transformed string is returned, excluding the terminating null character.
If count is 0, then dest is allowed to be a null pointer.
Notes
The correct length of the buffer that can receive the entire transformed string is 1+std::wcsxfrm(NULL, src, 0)
This function is used when making multiple locale-dependent comparisons using the same wide string or set of wide strings, because it is more efficient to use std::wcsxfrm to transform all the strings just once, and subsequently compare the transformed wide strings with std::wcscmp.
Parameters
dest - pointer to the first element of a wide null-terminated string to write the transformed string to
src - pointer to the null-terminated wide character string to transform
count - maximum number of characters to output
Return value
The length of the transformed wide string, not including the terminating null-character.
Example
// Run this code
Output:
See also
strxfrm (function)
do_transform transforms a string so that collation can be replaced by comparison
[virtual]
wcscoll (function)