ft_isprint - kibotrel/42-Libft GitHub Wiki
int ft_isprint(int c)
Description :
Checks if the given integer c
is an printable ASCII code or not.
Return Value :
Returns 1
if it's an printable ASCII code otherwise, 0
is returned.
int ft_isprint(int c)
Description :
Checks if the given integer c
is an printable ASCII code or not.
Return Value :
Returns 1
if it's an printable ASCII code otherwise, 0
is returned.