isalpha, iswalpha (Windows CE 5.0)
Developing an Application > Microsoft C Run-time Library for Windows CE > Run-time Library Reference
This routine returns nonzero if c is a particular representation of an alphabetic character.
int isalpha( int c);int iswalpha( wint_tc);
Parameters
- c
Integer to test.
Return Values
isalpha returns a non-zero value if c is within the ranges A – Z or a – z.
iswalpha returns a non-zero value for any wide character that is one of an implementation-defined set for which none of iswcntrl, iswdigit, iswpunct, or iswspace is true.
Each routine returns 0 if c does not satisfy the test condition.
Generic-Text Routine Mappings
TCHAR.H Routine | _UNICODE Defined |
---|---|
_istalpha | iswalpha |
For more information about TCHAR.H routines, see Generic Text Mappings.
Requirements
OS Versions: Windows CE 2.0 and later.
Header: stdlib.h.
Link Library: coredll.dll.
See Also
iscntrl | isdigit | ispunct | isspace
Send Feedback on this topic to the authors