![]() |
isalpha | Function (Macro) |
ctype.h |
short isalpha (short c); |
Checks whether a character is a letter.
isalpha returns nonzero if c is a letter ('A' to 'Z' or 'a' to 'z'), otherwise it returns zero. It is an inline function which is implemented using GNU C smart macros, which expands to a relatively small code.