ft_isascii - kibotrel/42-Libft GitHub Wiki

int     ft_isascii(int c)

Description :

Checks if the given integer c is an ASCII code or not.

Return Value :

Returns 1 if it's an ASCII code otherwise, 0 is returned.

Source code