ft_isprint
Subject
Understandable explanation
For this function, the man is pretty self-explanatory, but I'll give more details (i.e. what are the printing characters).
The isprint()
function returns a non-zero value if the character passed as an int
parameter is a printing character.
If the character is not a printing character, the isprint()
function returns 0
.
The printing characters are all character between decimal 32 and decimal 126.
Hints
ft_isprint.c
Commented solution
Last updated