/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_isascii.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: bgoulard +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2023/11/06 11:23:34 by bgoulard #+# #+# */ /* Updated: 2023/11/10 14:57:19 by bgoulard ### ########.fr */ /* */ /* ************************************************************************** */ int ft_isascii(int c) { return (c >= 0 && c <= 127); }