ft_isalpha - kibotrel/42-Libft GitHub Wiki

int     ft_isalpha(int c)

Description :

Checks if the given integer c is an alphabetic ASCII code or not.

Return Value :

Returns 1 if it's an alphabetic ASCII code otherwise, 0 is returned.

Source code