aboutsummaryrefslogtreecommitdiffstats
path: root/src/ft_isprint.c
blob: 73964fff7184a028667d313266800523bc1d4711 (plain)
1
2
3
4
5
6
7
#include "libft.h"

int
ft_isprint (int c)
{
  return (c >= 32 && c <= 126);
}