|
wcpcpy(3) -- copy a wide character string, returning a pointer to its end
|
The wcpcpy function is the wide-character equivalent of the stpcpy function. It copies the wide character string pointed to by src, including the terminating L'\0' character, to the array pointed t... |
wcpncpy(3) -- copy a fixed-size string of wide characters, returning a pointer to its end
|
The wcpncpy function is the wide-character equivalent of the stpncpy function. It copies at most n wide characters from the wide-character string pointed to by src, including the terminating L'\0' ... |
wcrtomb(3) -- convert a wide character to a multibyte sequence
|
The main case for this function is when s is not NULL and wc is not L'\0'. In this case, the wcrtomb function converts the wide character wc to its multibyte representation and stores it at the beg... |
wcscasecmp(3) -- compare two wide-character strings, ignoring case
|
The wcscasecmp function is the wide-character equivalent of the str- casecmp function. It compares the wide-character string pointed to by s1 and the wide-character string pointed to by s2, ignoring c... |
wcscat(3) -- concatenate two wide-character strings
|
The wcscat function is the wide-character equivalent of the strcat function. It copies the wide-character string pointed to by src, including the terminating L'\0' character, to the end of the wide... |
wcschr(3) -- search a wide character in a wide-character string
|
The wcschr function is the wide-character equivalent of the strchr function. It searches the first occurrence of wc in the wide-character string pointed to by wcs. |
wcscmp(3) -- compare two wide-character strings
|
The wcscmp function is the wide-character equivalent of the strcmp function. It compares the wide-character string pointed to by s1 and the wide-character string pointed to by s2. |
wcscpy(3) -- copy a wide character string
|
The wcscpy function is the wide-character equivalent of the strcpy function. It copies the wide character string pointed to by src, including the terminating L'\0' character, to the array pointed t... |
wcscspn(3) -- search a wide-character string for any of a set of wide characters
|
The wcscspn function is the wide-character equivalent of the strcspn function. It determines the length of the longest initial segment of wcs which consists entirely of wide-characters not listed in r... |
wcsdup(3) -- duplicate a wide-character string
|
The wcsdup function is the wide-character equivalent of the strdup function. It allocates and returns a new wide-character string whose initial contents is a duplicate of the wide-character string poi... |
wcslen(3) -- determine the length of a wide-character string
|
The wcslen function is the wide-character equivalent of the strlen function. It determines the length of the wide-character string pointed to by s, not including the terminating L'\0' character. |
wcsncasecmp(3) -- compare two fixed-size wide-character strings, ignoring case
|
The wcsncasecmp function is the wide-character equivalent of the strn- casecmp function. It compares the wide-character string pointed to by s1 and the wide-character string pointed to by s2, but at m... |
wcsncat(3) -- concatenate two wide-character strings
|
The wcsncat function is the wide-character equivalent of the strncat function. It copies at most n wide characters from the wide-character string pointed to by src to the end of the wide-character str... |