/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_isascii.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: mdenys +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2020/10/29 18:53:32 by mdenys #+# #+# */ /* Updated: 2020/10/30 11:54:20 by mdenys ### ########.fr */ /* */ /* ************************************************************************** */ #include "libft.h" int ft_isascii(int c) { if (c >= 0 && c <= 127) return (1); return (0); }