Char Functions (ctype.h
)
LIB_FT
ft_isalpha.c
This material is for educational purposes only. Use it to understand concepts and develop your own solutions.
int ft_isalpha(int c);
Checks if the character is an alphabetic letter (A-Z or a-z).
The ft_isalpha
function tests whether the given character is a letter (either uppercase or lowercase).