ft_isalpha
Subject
Understandable explanation
For this function, the man is self-explanatory, but I'll still explain it in other words.
The isalpha()
function returns a non-zero value if the character passed as an int
parameter is an alphabetical letter (lowercase or uppercase).
If the character is not alphabetical, the isalpha()
function returns 0
.
Hints
ft_isalpha.c
Commented solution
Come on ! You really need the code for that function ?
Last updated