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...
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...
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.
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.
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 ...
The wmemmove function is the wide-character equivalent of the memmove function. It copies n wide characters from the array starting at src to the array starting at dest. The arrays may overlap. The pr...
The wmemset function is the wide-character equivalent of the memset function. It fills the array of n wide-characters starting at wcs with n copies of the wide character wc.
The wprintf family of functions is the wide-character equivalent of the printf family of functions. It performs formatted output of wide characters. The wprintf and vwprintf functions perform wide cha...
__setfpucw transfers control_word to the registers of the fpu (floating point unit) on i386 architecture. This was used to control floating point precision, rounding and floating point exceptions.