#include <ctype.h>
int ft_isascii(int c);
DESCRIPTION:
checks whether c is a 7-bit unsigned char value that fits into the ASCII character set.
RETURN VALUE:
The values returned are nonzero if the character c falls into the tested class, and zero if not.
classification character libft