aboutsummaryrefslogtreecommitdiff
path: root/ft_isprint.c
blob: 6834120dbdf2b8196962d2b1ae2fb1cf6943ba43 (plain)
1
2
3
4
int ft_isprint(int c)
{
    return (c >= ' ' && c <= '~');
}