/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_isascii.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: scebula +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2015/11/26 10:14:02 by scebula #+# #+# */ /* Updated: 2015/11/26 10:15:19 by scebula ### ########.fr */ /* */ /* ************************************************************************** */ #include "libft.h" int ft_isascii(int c) { return (0 <= c && c <= 127); }