다음을 통해 공유


CharLower (Windows CE 5.0)

Send Feedback

This function converts a character string or a single character to lowercase. If the operand is a character string, the function converts the characters in place.

LPTSTR CharLower(LPTSTRlpsz);

Parameters

  • lpsz
    [in] Pointer to a null-terminated string or specifies a single character. If the high-order word of this parameter is 0, the low-order word must contain a single character to be converted.

Return Values

A pointer to the converted string indicates that the operand is a character string. Because the string is converted in place, the return value is equal to lpsz.

A 32-bit value whose high-order word is 0 and low-order word contains the converted character indicates that the operand is a single character.

There is no indication of success or failure. Failure is rare. There is no extended error information for this function; do not call GetLastError.

Remarks

Windows CE does not have language drivers.

Windows CE supports only the Unicode version of this function.

Requirements

OS Versions: Windows CE 1.0 and later.
Header: Winbase.h.
Link Library: Coreloc.lib.

See Also

CharLowerBuff | CharUpper | CharUpperBuff | Programming with Unicode and NLS

Send Feedback on this topic to the authors

Feedback FAQs

© 2006 Microsoft Corporation. All rights reserved.