|
wcsstr(3) -- locate a substring in a wide-character string
|
The wcsstr function is the wide-character equivalent of the strstr function. It searches for the first occurrence of the wide-character string needle (without its terminating L'\0' character) as a ... |
wcstok(3) -- split wide-character string into tokens
|
The wcstok function is the wide-character equivalent of the strtok function, with an added argument to make it multithread-safe. It can be used to split a wide-character string wcs into tokens, where ... |
wcstombs(3) -- convert a wide character string to a multibyte string
|
If dest is not a NULL pointer, the wcstombs function converts the widecharacter string src to a multibyte string starting at dest. At most n bytes are written to dest. The conversion starts in the ini... |
wcswidth(3) -- determine columns needed for a fixed-size wide character string
|
The wcswidth function returns the number of columns needed to represent the wide-character string pointed to by s, but at most n wide characters. If a non-printable wide character occurs among these c... |
wctob(3) -- try to represent a wide character as a single byte
|
The wctob function tests whether the multi-byte representation of the wide character c, starting in the initial state, consists of a single byte. If so, it is returned as an unsigned char. Never use t... |
wctomb(3) -- convert a wide character to a multibyte sequence
|
If s is not NULL, the wctomb function converts the wide character wc to its multibyte representation and stores it at the beginning of the character array pointed to by s. It updates the shift state, ... |
wctrans(3) -- wide character translation mapping
|
The wctrans_t type represents a mapping which can map a wide character to another wide character. Its nature is implementation dependent, but the special value (wctrans_t)0 denotes an invalid mapping.... |
wctype(3) -- wide character classification
|
The wctype_t type represents a property which a wide character may or may not have. In other words, it represents a class of wide characters. This type's nature is implementation dependent, but the s... |
wcwidth(3) -- determine columns needed for a wide character
|
The wcwidth function returns the number of columns needed to represent the wide character c. If c is a printable wide character, the value is at least 0. If c is L'\0', the value is 0. Otherwise -1... |
winop(3) -- Perform assorted window operations
|
The winop command performs various window operations on Tk windows using low-level Xlib function calls to work around window manager pecularities. |
wmemchr(3) -- search a wide character in a wide-character array
|
The wmemchr function is the wide-character equivalent of the memchr function. It searches the n wide characters starting at s for the first occurrence of the wide character c. |
wmemcmp(3) -- compare two arrays of wide-characters
|
The wmemcmp function is the wide-character equivalent of the memcmp function. It compares the n wide-characters starting at s1 and the n wide-characters starting at s2. |
wmemcpy(3) -- copy an array of wide-characters
|
The wmemcpy function is the wide-character equivalent of the memcpy function. It copies n wide characters from the array starting at src to the array starting at dest. The arrays may not overlap; use ... |