IsCharAlpha

  BOOL IsCharAlpha(cChar)    
  TCHAR cChar; /* character to test */

The IsCharAlpha function determines whether a character is an alphabetical character. This determination is based on the language semantics of the language selected by the user at setup time or from the Control Panel.

Parameters

cChar

Specifies the character to be tested.

Return Value

The return value is TRUE if the character is alphabetical. Otherwise, it is FALSE.

Comments

The IsCharAlpha function may be used as either a wide-character function (where text arguments must use Unicode) or an ANSI function (where text arguments must use characters from the Windows 3.x character set installed).

See Also

IsCharAlphaNumeric