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