strxfrm
From cppreference.com
Defined in header <string.h>
|
||
size_t strxfrm( const char *dest, const char *src, size_t count ); |
||
Transforms the null-terminated byte string pointed to by src according to the current locale and copies the first count characters of the transformed string to destination, returning its length. Alternativelly, the function can be used to only retrieve the length, by specifying a null pointer for dest and 0 for count.
Contents |
[edit] Parameters
dest | - | pointer to the byte string to copy the transformed string to |
src | - | pointer to the null-terminated byte string to transform |
count | - | maximum number of characters to transform |
[edit] Return value
The length of the transformed string, not including the terminating null-character.
[edit] Example
This section is incomplete Reason: no example |
[edit] See also
C++ documentation for strxfrm
|