CharUpperBuff
A version of this page is also available for
4/8/2010
This function converts lowercase characters in a buffer to uppercase characters. The function converts the characters in place.
Syntax
DWORD CharUpperBuff(
LPTSTR lpsz,
DWORD cchLength
);
Parameters
- lpsz
[in] Pointer to a buffer that contains one or more characters to process.
- cchLength
[in] The size, in characters, of the buffer pointed to by lpsz. The function examines the number of characters indicated by cchLength, even if one or more characters are null characters.
Return Value
The number of characters processed indicates success. For example, if CharUpperBuff("Zenith of API Sets", 10)
succeeds, the return value is 10.
Remarks
Windows Embedded CE does not have language drivers.
Windows Embedded CE supports only the Unicode version of this function.
Requirements
Header | winbase.h |
Library | Coreloc.lib |
Windows Embedded CE | Windows CE 1.0 and later |
Windows Mobile | Windows Mobile Version 5.0 and later |
See Also
Reference
String Functions
CharLowerBuff