/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_isascii.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: vvobis +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2024/04/02 19:48:35 by vvobis #+# #+# */ /* Updated: 2024/04/02 19:49:36 by vvobis ### ########.fr */ /* */ /* ************************************************************************** */ #include "libft.h" int ft_isascii(int c) { if (c >= 0 && c <= 127) return (1); return (0); }