/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_isascii.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: nalebrun +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2024/10/10 11:11:09 by nalebrun #+# #+# */ /* Updated: 2024/11/25 16:14:40 by nalebrun ### ########.fr */ /* */ /* ************************************************************************** */ #include "../../libft.h" int ft_isascii(int c) { if (c >= 0 && c <= 127) return (1); else return (0); }