Function isalnum

Top 

Declaration:

int isalnum(unsigned char c);

Description

The isalnum function checks, whether parameter c is a Latin alphabet letter or a digit ('A'-'Z', 'a'-'z', or '0'-'9').

Returned value

The isalnum function will return a non-zero value, if c is an alphabetic character or a digit, and will return 0 otherwise.