int isalnum

int isalnum(int __c)

Checks for an alphanumeric character. It is equivalent to (isalpha(c) || isdigit(c)).