/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_isspace.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: narnaud +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2022/03/24 10:05:51 by narnaud #+# #+# */ /* Updated: 2022/05/03 09:47:28 by narnaud ### ########.fr */ /* */ /* ************************************************************************** */ #include "../libft.h" int ft_isspace(int c) { if (c > 8 && c < 14) return (1); if (c == ' ') return (1); return (0); }