isalnum

Name

isalnum -- tests for alphabetic or numeric characters

Synopsis

int8 isalnum(int8 ch);

Description

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