#include <ctype.h>
int ft_isprint(int c);

DESCRIPTION: Checks for any printable character including space.

RETURN VALUE: The values returned are nonzero if the character c falls into the tested class, and zero if not.

classification character libft