/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_isascii.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: aortigos +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2023/09/20 17:55:43 by aortigos #+# #+# */ /* Updated: 2023/10/26 07:39:27 by aortigos ### ########.fr */ /* */ /* ************************************************************************** */ #include "libft.h" int ft_isascii(int c) { return (c >= 0 && c <= 127); }