ft_isprint - gabrielcoelhodacunha-old/42sp-libft GitHub Wiki
Description
Checks if c
is an ASCII printable character.
Implementation
int ft_isprint(int c)
{
return (c >= ' ' && c <= '~');
}
Checks if c
is an ASCII printable character.
int ft_isprint(int c)
{
return (c >= ' ' && c <= '~');
}