/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_isascii.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: erey-bet +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2022/07/17 18:06:14 by erey-bet #+# #+# */ /* Updated: 2022/09/26 14:36:18 by erey-bet ### ########.fr */ /* */ /* ************************************************************************** */ int ft_isascii(int c) { if (c >= 0 && c <= 127) return (1); return (0); }