IsCharUpper function

Expand
This topic has not yet been rated - Rate this topic

IsCharUpper function

Applies to: desktop apps only

Determines whether a character is uppercase. This determination is based on the semantics of the language selected by the user during setup or through Control Panel.

Syntax

BOOL WINAPI IsCharUpper(
  __in  TCHAR ch
);

Parameters

ch [in]

Type: TCHAR

The character to be tested.

Return value

Type: BOOL

If the character is uppercase, the return value is nonzero.

If the character is not uppercase, the return value is zero. To get extended error information, call GetLastError.

Requirements

Minimum supported client

Windows 2000 Professional

Minimum supported server

Windows 2000 Server

Header

Winuser.h (include Windows.h)

Library

User32.lib

DLL

User32.dll

Unicode and ANSI names

IsCharUpperW (Unicode) and IsCharUpperA (ANSI)

See also

Reference
IsCharLower
Conceptual
Strings

 

 

Send comments about this topic to Microsoft

Build date: 5/5/2012

Did you find this helpful?
(1500 characters remaining)
Community Additions ADD