|
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... |
wcsncmp(3) -- compare two fixed-size wide-character strings
|
The wcsncmp function is the wide-character equivalent of the strncmp function. It compares the wide-character string pointed to by s1 and the wide-character string pointed to by s2, but at most n wide... |
wcsncpy(3) -- copy a fixed-size string of wide characters
|
The wcsncpy function is the wide-character equivalent of the strncpy function. It copies at most n wide characters from the wide-character string pointed to by src, including the terminating L'\0' ... |
wcsnlen(3) -- determine the length of a fixed-size wide-character string
|
The wcsnlen function is the wide-character equivalent of the strnlen function. It returns the number of wide-characters in the string pointed to by s, not including the terminating L'\0' character,... |
wcsnrtombs(3) -- convert a wide character string to a multibyte string
|
The wcsnrtombs function is like the wcsrtombs function, except that the number of wide characters to be converted, starting at *src, is limited to nwc. If dest is not a NULL pointer, the wcsnrtombs fu... |
wcspbrk(3) -- search a wide-character string for any of a set of wide characters
|
The wcspbrk function is the wide-character equivalent of the strpbrk function. It searches for the first occurrence in the wide-character string pointed to by wcs of any of the characters in the wide-... |
wcsrchr(3) -- search a wide character in a wide-character string
|
The wcsrchr function is the wide-character equivalent of the strrchr function. It searches the last occurrence of wc in the wide-character string pointed to by wcs. |