isalpha

Name

isalpha -- tests for alphabetic characters

Synopsis

int8 isalpha(int8 ch);

Description

isalpha evaluates the character ch and returns a non-zero value if it is a lower case character (a-z) or upper case character (A-Z). If not, the return value is zero.