Files
libft/ft_isprint.c

7 lines
79 B
C

#include "libft.h"
int ft_isprint(int c)
{
return ((32 <= c && c <= 126));
}