Function isalpha

Top 

Declaration:

int isalpha(unsigned char c);

Description

The isalpha function checks, if parameter c is a Latin alphabet character ('A'-'Z', or 'a'-'z').

Returned value

The isalpha function will return a non-zero value, if c is an alphabetic character, otherwise it will return 0.