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